/* Premium Homestay App Stylesheet - Dark Glassmorphism */

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-base: #f7f8f9;
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    --bg-sidebar: #ffffff;
    
    --primary-color: #0070f4; /* Kiotviet Blue */
    --primary-gradient: linear-gradient(135deg, #0070f4, #0056b3);
    --accent-color: #f43f5e; /* Rose Red */
    --accent-gradient: linear-gradient(135deg, #f43f5e, #e11d48);
    
    --text-main: #15171a;
    --text-muted: #64748b;
    --text-dark: #ffffff;
    
    --border-color: #e2e8f0;
    --border-focus: rgba(0, 112, 244, 0.4);
    
    --status-available: #10b981;
    --status-occupied: #f43f5e;
    --status-cleaning: #eab308;
    --status-maintenance: #64748b;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-main: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
    --shadow-glow-green: 0 0 20px rgba(0, 112, 244, 0.1);
    --shadow-glow-red: 0 0 20px rgba(244, 63, 94, 0.1);
    --shadow-glow-gold: 0 0 20px rgba(234, 179, 8, 0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    overflow-x: hidden;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Layout */
.app-container {
    display: flex;
    width: 100%;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background-color: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 40px;
    text-decoration: none;
}

.sidebar-logo i {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 26px;
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-menu-item a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.sidebar-menu-item a:hover {
    color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.05);
}

.sidebar-menu-item.active > a {
    color: var(--text-dark);
    background: var(--primary-gradient);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.sidebar-menu-item.has-dropdown.active > a {
    color: var(--primary-color) !important;
    background: rgba(0, 112, 244, 0.08) !important;
    box-shadow: none !important;
}

.sidebar-user {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-weight: 700;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.user-role {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
}

.btn-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    width: 100%;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-logout:hover {
    background: #ef4444;
    color: white;
}

/* Main Content Area */
.main-wrapper {
    margin-left: 260px;
    padding: 40px;
    width: calc(100% - 260px);
    min-height: 100vh;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
}

.page-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-green);
}

.btn-secondary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-accent {
    background: var(--accent-gradient);
    color: var(--text-dark);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-gold);
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    color: white;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-red);
}

/* Glass Cards */
.card-glass {
    background: var(--bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-main);
    margin-bottom: 24px;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.stat-icon.green { background: rgba(16, 185, 129, 0.15); color: var(--status-available); }
.stat-icon.red { background: rgba(244, 63, 94, 0.15); color: var(--status-occupied); }
.stat-icon.yellow { background: rgba(245, 158, 11, 0.15); color: var(--status-cleaning); }
.stat-icon.grey { background: rgba(107, 114, 128, 0.15); color: var(--status-maintenance); }
.stat-icon.gold { background: rgba(251, 191, 36, 0.15); color: var(--accent-color); }

.stat-details {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Rooms Board (Grid View) */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.room-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-main);
}

/* Status-specific card borders & glow */
.room-card.status-available { border-top: 4px solid var(--status-available); }
.room-card.status-available:hover { box-shadow: var(--shadow-glow-green); border-color: var(--status-available); }

.room-card.status-occupied { border-top: 4px solid var(--status-occupied); }
.room-card.status-occupied:hover { box-shadow: var(--shadow-glow-red); border-color: var(--status-occupied); }

.room-card.status-cleaning { border-top: 4px solid var(--status-cleaning); }
.room-card.status-cleaning:hover { box-shadow: var(--shadow-glow-gold); border-color: var(--status-cleaning); }

.room-card.status-maintenance { border-top: 4px solid var(--status-maintenance); }
.room-card.status-maintenance:hover { border-color: var(--status-maintenance); }

.room-card-header {
    padding: 20px 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
}

.room-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-badge.available { background: rgba(16, 185, 129, 0.15); color: var(--status-available); border: 1px solid rgba(16, 185, 129, 0.3); }
.room-badge.occupied { background: rgba(244, 63, 94, 0.15); color: var(--status-occupied); border: 1px solid rgba(244, 63, 94, 0.3); }
.room-badge.cleaning { background: rgba(245, 158, 11, 0.15); color: var(--status-cleaning); border: 1px solid rgba(245, 158, 11, 0.3); }
.room-badge.maintenance { background: rgba(107, 114, 128, 0.15); color: var(--status-maintenance); border: 1px solid rgba(107, 114, 128, 0.3); }

.room-card-body {
    padding: 10px 20px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.room-type {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.room-price-list {
    margin-top: auto;
    padding: 10px 0;
    border-top: 1px dashed var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
}

.price-val {
    font-weight: 600;
    color: var(--text-main);
}

/* Active guest info in room card */
.active-guest-box {
    margin-top: 10px;
    padding: 12px;
    background: rgba(244, 63, 94, 0.08);
    border: 1px solid rgba(244, 63, 94, 0.15);
    border-radius: 10px;
    font-size: 13px;
}

.guest-title {
    font-weight: 700;
    color: var(--status-occupied);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.guest-info-row {
    color: var(--text-main);
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
}

.guest-info-label {
    color: var(--text-muted);
}

.room-card-footer {
    padding: 15px 20px 20px;
    display: flex;
    gap: 10px;
    border-top: 1px solid var(--border-color);
}

.room-card-footer .btn {
    width: 100%;
}

/* Data Tables */
.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.table-custom {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.table-custom th,
.table-custom td {
    padding: 16px 20px;
    text-align: left;
}

.table-custom th {
    background-color: rgba(255, 255, 255, 0.02);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.table-custom td {
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-main);
}

.table-custom tr:hover td {
    background-color: rgba(255, 255, 255, 0.02);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow-green);
}

.form-control::placeholder {
    color: var(--text-muted);
}

select.form-control option {
    background-color: #10121a;
    color: var(--text-main);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #141620;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: var(--shadow-main);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 18px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--text-main);
}

.modal-body {
    padding: 24px;
}

/* Invoice view design */
.invoice-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    color: #111827;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.invoice-logo {
    font-size: 24px;
    font-weight: 800;
    color: #10b981;
}

.invoice-meta {
    text-align: right;
    font-size: 14px;
    color: #4b5563;
}

.invoice-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.invoice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.invoice-section-title {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.invoice-details-box {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    padding: 16px;
    font-size: 14px;
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.invoice-row:last-child {
    margin-bottom: 0;
}

.invoice-label {
    color: #6b7280;
}

.invoice-value {
    font-weight: 600;
    color: #111827;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.invoice-table th {
    text-align: left;
    padding: 12px 8px;
    border-bottom: 2px solid #e5e7eb;
    color: #4b5563;
    font-weight: 600;
}

.invoice-table td {
    padding: 14px 8px;
    border-bottom: 1px solid #f3f4f6;
}

.invoice-total-section {
    width: 50%;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.invoice-total-row {
    display: flex;
    justify-content: space-between;
}

.invoice-total-row.grand-total {
    border-top: 2px solid #e5e7eb;
    padding-top: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #10b981;
}

.invoice-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

/* Alert banners */
.alert {
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* Login Page Custom CSS */
.login-body {
    background: radial-gradient(circle at center, #1e2233 0%, #0c0d12 100%);
    justify-content: center;
    align-items: center;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: rgba(20, 22, 32, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.login-title-box {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.login-logo i {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-subtitle {
    color: var(--text-muted);
    font-size: 14px;
}

/* Print print media settings */
@media print {
    body {
        background: white !important;
        color: black !important;
    }
    .app-container {
        display: block;
    }
    .sidebar, .main-wrapper > :not(.invoice-container), .invoice-actions {
        display: none !important;
    }
    .main-wrapper {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    .invoice-container {
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
}

/* Responsiveness */
@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.active {
        transform: translateX(0);
    }
    .main-wrapper {
        margin-left: 0;
        width: 100%;
        padding: 20px;
    }
}

/* Layout overrides: Top Horizontal Menu Bar */
.sidebar {
    width: 100% !important;
    height: 70px !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 40px !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border-color) !important;
    z-index: 1000 !important;
    background-color: var(--bg-sidebar) !important;
}

.sidebar-logo {
    margin-bottom: 0 !important;
}

.sidebar-menu {
    flex-direction: row !important;
    gap: 8px !important;
}

.sidebar-menu-item a {
    padding: 8px 14px !important;
    font-size: 13px !important;
    border-radius: 20px !important;
}

.sidebar-user {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
}

.btn-logout {
    padding: 8px 12px !important;
    font-size: 12px !important;
    width: auto !important;
}

.main-wrapper {
    margin-left: 0 !important;
    padding-top: 100px !important;
    width: 100% !important;
}

@media (max-width: 991px) {
    .sidebar {
        flex-direction: column !important;
        height: auto !important;
        position: relative !important;
        padding: 15px !important;
        gap: 15px !important;
        transform: none !important;
    }
    .sidebar-menu {
        flex-direction: column !important;
        width: 100% !important;
        gap: 5px !important;
    }
    .sidebar-user {
        width: 100% !important;
        justify-content: space-between !important;
    }
    .main-wrapper {
        padding-top: 20px !important;
    }
}

/* Light Theme Overrides & Legibility Fixes */
body {
    background-color: var(--bg-base) !important;
    color: var(--text-main) !important;
}

.card-glass {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-main) !important;
    color: var(--text-main) !important;
}

.form-control {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #15171a !important;
}

.form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(0, 112, 244, 0.15) !important;
}

.modal-content {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #15171a !important;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.modal-header, .modal-footer {
    border-color: #f1f5f9 !important;
}

select.form-control option {
    background-color: #ffffff !important;
    color: #15171a !important;
}

.sidebar {
    background-color: #ffffff !important;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.05) !important;
}

.sidebar-menu-item a {
    color: #4b5563 !important;
}

.sidebar-menu-item a:hover {
    background-color: #f1f5f9 !important;
    color: var(--primary-color) !important;
}

.sidebar-menu-item.active > a {
    color: #ffffff !important;
    background: var(--primary-gradient) !important;
    box-shadow: 0 4px 15px rgba(0, 112, 244, 0.25) !important;
}

.sidebar-menu-item.has-dropdown.active > a {
    color: var(--primary-color) !important;
    background: #f1f5f9 !important;
    box-shadow: none !important;
}

.sidebar-logo span {
    color: #111827 !important;
}

.sidebar-logo i {
    background: var(--primary-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Table light theme readability */
.table-custom {
    color: var(--text-main) !important;
}

.table-custom th {
    background-color: #f8fafc !important;
    color: #475569 !important;
    border-bottom: 2px solid #e2e8f0 !important;
}

.table-custom td {
    border-bottom: 1px solid #f1f5f9 !important;
    color: #334155 !important;
}

.table-custom tr:hover td {
    background-color: #f8fafc !important;
}

/* alert cards */
.alert-success {
    background: #ecfdf5 !important;
    border-color: #a7f3d0 !important;
    color: #065f46 !important;
}

.alert-error {
    background: #fdf2f8 !important;
    border-color: #fbcfe8 !important;
    color: #9d174d !important;
}

/* scrollable activity log cards styling */
.activity-card {
    background: #f8fafc !important;
    border: 1px solid #f1f5f9 !important;
}

.activity-card:hover {
    background: #f1f5f9 !important;
}

/* dashboard elements fixes */
.dashboard-tabs {
    background: #f1f5f9 !important;
    border-color: #e2e8f0 !important;
}

.dashboard-tab-btn {
    color: #475569 !important;
}

.dashboard-tab-btn.active {
    background: var(--primary-color) !important;
    color: #ffffff !important;
}

.progress-bar-container {
    background: #e2e8f0 !important;
}

/* Navbar Hover Dropdown Menu */
.sidebar-menu-item {
    position: relative;
}

.dropdown-menu-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 6px 0;
    min-width: 180px;
    display: none;
    z-index: 10000;
}

.dropdown-menu-list::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.dropdown-menu-list li {
    margin: 0;
    padding: 0;
}

.dropdown-menu-list li a {
    display: block !important;
    padding: 10px 16px !important;
    color: #475569 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-align: left !important;
    transition: background-color 0.2s ease !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
}

.dropdown-menu-list li a:hover {
    background-color: #f1f5f9 !important;
    color: var(--primary-color) !important;
}

.dropdown-menu-list li.active a {
    color: var(--primary-color) !important;
    background-color: rgba(0, 112, 244, 0.08) !important;
    font-weight: 600 !important;
}

.sidebar-menu-item:hover .dropdown-menu-list {
    display: block;
}

@media (max-width: 991px) {
    .dropdown-menu-list {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        display: block !important;
        padding-left: 20px !important;
        background: transparent !important;
    }
    .dropdown-menu-list li a {
        color: #64748b !important;
    }
}

body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Be Vietnam Pro', 'Inter', sans-serif !important;
}
