   body {
    font-family: 'Tajawal', sans-serif;
}

.property-card {
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
}

.badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 9999px;
    font-weight: 500;
}

.badge-featured {
    background-color: rgba(37, 99, 235, 0.1);
    color: #2563EB;
}

.badge-popular {
    background-color: #dcfce7;
    color: #16a34a;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2563EB;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 0;
    margin: 0;
    list-style: none;
}

.pagination .page-item {
    display: inline-block;
}

.pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e5e7eb;
    background-color: white;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}

.pagination .page-link:hover {
    background-color: #f3f4f6;
    border-color: #d1d5db;
    color: #374151;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pagination .page-item.active .page-link {
    background-color: #2563EB;
    border-color: #2563EB;
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.pagination .page-item.active .page-link:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
}

.pagination .page-item.disabled .page-link {
    color: #9ca3af;
    pointer-events: none;
    background-color: #f9fafb;
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination .page-link i {
    font-size: 0.875rem;
}

/* Pagination container */
nav[aria-label="Pagination Navigation"] {
    margin-top: 3rem;
}
