.search-filter-section {
    border-bottom: 1px solid #e2e8f0;
}

.properties-card {
    position: relative;
}

.properties-card .available-filter {
    position: relative;
    background-color: rgba(0, 228, 76, 0.507);
    right: 0;
    margin: .5rem;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: .5rem;
}

.properties-card .available {
    background-color: rgba(0, 228, 76, 0.507);
}

.properties-card .sold {
    background-color: rgba(255, 0, 0, 0.507);
}

.properties-card .available-filter h4 {
    padding: .3rem;
    font-size: .875rem;
    font-weight: 700;
}
.properties-card p {
    overflow: hidden;
}

.pagination {
  text-align: center;
  margin-top: 2rem;
}

.pagination button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: .5rem;
    padding: .625rem 1.25rem;
    font-size: .875rem;
    font-weight: 500;
    border-radius: .375rem;
    cursor: pointer;
    border: 1px solid transparent;
    background-color: #e2e8f0;
    color: #1a202c;
    border-color: #e2e8f0;
    transition: background-color .2s, color .2s, border-color .2s;
}

.pagination button.active {
    background-color: #1a202c;
    color: #ffffff;
}