.search-section {
    background: linear-gradient(135deg, #eaf6f0, #ffffff);
    padding: 24px 28px;
    border-radius: 16px;
    border: 1px solid #e2efe8;
}

.search-section .form-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

.search-section .form-control,
.search-section .form-select {
    border-radius: 12px;
    padding: 10px 14px;
    border-color: #d6e6dd;
}

.search-section .form-control:focus,
.search-section .form-select:focus {
    border-color: #70b88d;
    box-shadow: 0 0 0 0.15rem rgba(112, 184, 141, 0.25);
}

.search-section .btn-success {
    background-color: #70b88d;
    border-color: #70b88d;
    border-radius: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.search-section .btn-success:hover {
    background-color: #5fa97d;
    border-color: #5fa97d;
}

.text-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sort-box .btn.active {
    background-color: #70b88d;
    color: #fff;
}
.address-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}
@media (max-width: 576px) {
    .rent-card .card-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
    }

    .rent-card img {
        width: 100%;
        height: auto;
        margin-right: 0 !important;
        margin-bottom: 10px;
    }

    .rent-card ul {
        display: block;
    }

    .rent-card .rent-address {
        width: 100%;
        font-size: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: center;
    }
}
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin: 24px 0;
        font-size: 14px;
    }

    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        border: 1px solid #dcdcdc;
        background-color: #fff;
        color: #333;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .pagination a:hover {
        background-color: #eaf6ef;
        border-color: #28a745;
        color: #28a745;
    }

    .pagination .active {
        background-color: #28a745;
        border-color: #28a745;
        color: #fff;
        font-weight: 600;
        cursor: default;
    }

    .pagination .disabled {
        background-color: #f5f5f5;
        color: #aaa;
        border-color: #e0e0e0;
        cursor: not-allowed;
    }

    .pagination .prev,
    .pagination .next {
        padding: 0 14px;
        font-weight: 500;
    }
