:root {
    --primary-dark: #063428;
    --primary-green: #148b3b;
    --light-bg: #f8f9fa;
    --text-muted: #6c757d;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* Sidebar Styling */
#wrapper {
    min-height: 100vh;
}

/* Promo Card */
.promo-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
}

.promo-card h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.promo-card p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.btn-promo {
    background-color: var(--primary-green);
    color: white;
    font-size: 0.8rem;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.btn-promo:hover {
    background-color: #127933;
    color: white;
}

/* Header */
.top-header {
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.fs-sm {
    font-size: 0.85rem;
}

.btn-success {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-success:hover {
    background-color: #127933;
    border-color: #127933;
}

/* Filters */
.filter-section .form-label {
    font-size: 0.8rem;
}

.filter-section .form-control,
.filter-section .form-select,
.filter-section .input-group-text {
    font-size: 0.9rem;
}

.filter-section .form-control:focus,
.filter-section .form-select:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

/* Stats Cards */
.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Properties Tabs */
.property-tabs .nav-link {
    color: var(--text-muted);
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.5rem 1rem;
    margin-right: 1rem;
}

.property-tabs .nav-link.active {
    color: var(--primary-green);
    border-bottom: 2px solid var(--primary-green);
    background: transparent;
}

/* Property Cards */
.property-card {
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.property-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.property-card .badgee {
    font-weight: 500;
    font-size: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.property-card .features span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.view-btn {
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.view-btn:hover {
    background-color: var(--primary-green);
    color: white;
}

/* Pagination */
.pagination .page-link {
    padding: 0.5rem 0.75rem;
    color: var(--text-muted);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}