body { background-color: #0f150e; color: #dee5d9; font-family: 'Be Vietnam Pro', sans-serif; min-height: 100vh; }
/* Public Layout */
.public-header { position: fixed; top: 0; width: 100%; z-index: 50; display: flex; justify-content: space-between; align-items: center; padding: 0 1rem; height: 96px; background: rgba(5,10,5,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(16,185,84,0.15); }
@media (max-width: 480px) {
    .public-header { padding: 0 0.5rem; height: 72px; }
    .public-header .btn-login { padding: 0.35rem 0.75rem; font-size: 10px; }
    .public-header > div:first-child { min-width: auto !important; }
    .public-header > div:first-child a img { height: 56px !important; }
    .public-header > div:last-child { min-width: auto !important; }
}
.public-header .nav-link { color: rgba(255,255,255,0.6); font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.public-header .nav-link:hover, .public-header .nav-link.active { color: #FFD700; }
.public-header .nav-link .material-symbols-outlined { font-size: 1.25rem; }
.public-header .btn-login { background: #10B954; color: #FFD700; padding: 0.5rem 1.5rem; border-radius: 9999px; font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; text-decoration: none; transition: all 0.2s; display: inline-block; text-align: center; }
.public-header .btn-login:hover { filter: brightness(1.1); }
.public-main { padding-top: 96px; min-height: 100vh; }
.glass-panel { background: rgba(15, 21, 14, 0.7); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.05); }
.bloom-primary { box-shadow: 0 0 20px rgba(16,185,84, 0.3); }
.text-glow { text-shadow: 0 0 10px rgba(16,185,84, 0.5); }
.whatsapp-fab { position: fixed; bottom: 6rem; right: 1.5rem; z-index: 100; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px rgba(37,211,102,0.4); transition: all 0.2s; }
.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-fab svg { width: 32px; height: 32px; fill: white; }
.mobile-bottom-nav { display: none; }
@media (max-width: 768px) {
    .mobile-bottom-nav { display: flex; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 50; justify-content: space-around; align-items: center; height: 80px; background: rgba(5,10,5,0.9); backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,0.1); border-radius: 16px 16px 0 0; padding-bottom: env(safe-area-inset-bottom); }
    .mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); text-decoration: none; font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; transition: color 0.2s; }
    .mobile-bottom-nav a.active, .mobile-bottom-nav a:hover { color: #10B954; }
    .mobile-bottom-nav a .material-symbols-outlined { font-size: 24px; }
    .mobile-bottom-nav a span:last-child { margin-top: 4px; }
    .public-header .nav-desktop { display: none; }
    .public-main { padding-bottom: 80px; }
}
@media (min-width: 769px) {
    .public-header .nav-desktop { display: flex; }
}
.step-gradient { background: linear-gradient(180deg, #10B954 0%, #007255 100%); }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.glow-mint {
    box-shadow: 0 0 20px -5px rgba(16,185,84, 0.3);
}
.glass-card {
    background: rgba(15, 21, 14, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(185, 203, 193, 0.1);
}
.jungle-gradient {
    background: radial-gradient(circle at top right, rgba(16,185,84, 0.05), transparent),
                radial-gradient(circle at bottom left, rgba(255, 153, 0, 0.03), transparent);
}
:root {
    --sidebar-width: 260px;
    --header-height: 70px;
}
#sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1100;
    background: rgba(0,0,0,0.95) !important;
    backdrop-filter: blur(12px);
    border-right: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}
#sidebar .sidebar-header {
    padding: 1.2rem 1.2rem 0.6rem;
    text-align: center;
}
#sidebar .sidebar-header h4 { color: #10B954; }
#sidebar .nav-title {
    color: rgba(255,255,255,0.4);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    padding: 1.2rem 1.5rem 0.4rem;
}
#sidebar ul { list-style: none; padding-left: 0; margin: 0; }
#sidebar ul li a {
    color: rgba(255,255,255,0.7);
    border-left: 3px solid transparent;
    padding: 0.7rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}
#sidebar ul li a:hover,
#sidebar ul li a.active,
#sidebar ul li a:has(.active) {
    background: rgba(16,185,84,0.08);
    color: #10B954;
    border-left-color: #10B954;
}
#sidebar ul li a i { width: 20px; text-align: center; font-size: 1rem; }
#sidebar .nav-scroll { flex: 1; overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(16,185,84,0.25) transparent; }
#sidebar .nav-scroll::-webkit-scrollbar { width: 4px; }
#sidebar .nav-scroll::-webkit-scrollbar-track { background: transparent; }
#sidebar .nav-scroll::-webkit-scrollbar-thumb { background: rgba(16,185,84,0.25); border-radius: 4px; }
#sidebar .nav-scroll::-webkit-scrollbar-thumb:hover { background: rgba(16,185,84,0.45); }
#sidebar .sidebar-footer {
    border-top: 1px solid rgba(16,185,84,0.12);
    background: rgba(16,185,84,0.45);
    padding: 0.8rem 1.2rem;
}
#sidebar .tenant-info strong { color: #dee5d9; font-size: 0.8rem; display: block; }
#sidebar .tenant-info small { color: #83958c; font-size: 0.65rem; }
#sidebar .tenant-info img { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; }
.navbar {
    height: var(--header-height);
    padding: 0 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: space-between;
    background: rgba(15,21,14,0.85) !important;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(16,185,84,0.15);
}
.navbar .breadcrumb-item a { color: #10B954 !important; text-decoration: none; }
.navbar .breadcrumb-item.active { color: #83958c !important; }
.navbar .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    color: #dee5d9 !important;
    padding: 0.4rem;
    border-radius: 8px;
    position: relative;
}
.navbar .btn-icon:hover { background: rgba(16,185,84,0.15) !important; color: #10B954 !important; }
.navbar .btn-icon .badge {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
    border-radius: 20px;
}
.navbar .navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}
.navbar .user-menu {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.2rem 0.75rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
}
.navbar .user-menu:hover { background: rgba(255,255,255,0.06); }
.navbar .user-menu img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.navbar .user-menu span { color: #dee5d9; font-size: 0.85rem; }
.navbar .dropdown-menu {
    background: #171d16;
    border: 1px solid rgba(185,203,193,0.15);
}
.navbar .dropdown-menu .dropdown-item { color: #dee5d9; }
.navbar .dropdown-menu .dropdown-item:hover { background: rgba(16,185,84,0.08); color: #10B954; }
.navbar .dropdown-menu .dropdown-divider { border-color: rgba(255,255,255,0.08); }
.navbar .btn-toggle { display: none; }
#content {
    margin-left: var(--sidebar-width);
    transition: all 0.3s ease;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
#content .navbar { padding: 0 2rem; }
.navbar .btn-toggle { display: none; }
.page-section { animation: fadeIn 0.3s ease; padding: 2rem; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; gap: 1rem; }
.section-header h3 { color: #fbfffa; }
.section-header h3 i { color: #10B954; }
.section-header .actions { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.section-header .actions .btn i { margin-right: 0.3rem; }
.stat-card { background: rgba(15,21,14,0.7) !important; backdrop-filter: blur(12px); border: 1px solid rgba(185,203,193,0.1); border-radius: 10px; padding: 0.7rem; transition: all 0.2s ease; height: 100%; text-align: center; }
.stat-card:hover { transform: translateY(-2px); border-color: rgba(16,185,84,0.3); }
.stat-card .icon-box { width: 30px; height: 30px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.85rem; margin-bottom: 0.35rem; }
.stat-card h3, .stat-card .value { color: #fbfffa; font-size: 1.1rem; font-weight: 700; margin: 0.15rem 0; }
.stat-card p, .stat-card .label { color: #83958c; margin: 0; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.3px; }
.stat-card .trend { font-size: 0.65rem; margin-top: 0.25rem; display: inline-block; }
.stat-card .trend.up { color: #FFD700; }
.stat-card .trend.down { color: #ffb4ab; }
.stat-card .icon-box.purple { background: rgba(16,185,84,0.12); color: #10B954; }
.stat-card .icon-box.green { background: rgba(16,185,84,0.12); color: #FFD700; }
.stat-card .icon-box.blue { background: rgba(52,152,219,0.14); color: #5dade2; }
.stat-card .icon-box.orange { background: rgba(255,192,128,0.14); color: #ffc080; }
.stat-card .icon-box.red { background: rgba(255,180,171,0.14); color: #ffb4ab; }
.stat-card.no-icon { padding-top: 1rem; padding-bottom: 1rem; }
.stat-card.no-icon .value { font-size: 1.4rem; margin: 0.3rem 0; }
.content-card { background: rgba(15,21,14,0.7) !important; backdrop-filter: blur(12px); border: 1px solid rgba(185,203,193,0.1); border-radius: 14px; padding: 1.5rem; margin-bottom: 1.5rem; }
.content-card .card-header-custom { display: flex; justify-content: space-between; align-items: center; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.25rem; }
.content-card .card-header-custom h5 { color: #fbfffa; margin: 0; }
.content-card .card-header-custom h5 i { color: #10B954; }
.content-card h5, .content-card h4, .content-card h6 { color: #dee5d9; }
.content-card p { color: #83958c; }
.table-custom thead th { background: rgba(0,0,0,0.3) !important; color: #83958c !important; font-weight: 600; border: none; padding: 0.9rem 1rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.3px; }
.table-custom tbody td { padding: 0.9rem 1rem; vertical-align: middle; font-size: 0.92rem; color: #dee5d9; border-color: rgba(255,255,255,0.06) !important; }
.table-custom tbody tr:hover { background: rgba(16,185,84,0.04) !important; }
.status-badge { padding: 0.4rem 0.85rem; border-radius: 30px; font-size: 0.78rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem; }
.status-active { background: rgba(16,185,84,0.12) !important; color: #10B954 !important; }
.status-pending { background: rgba(255,192,128,0.12) !important; color: #ffc080 !important; }
.status-completed { background: rgba(255,215,0,0.12) !important; color: #FFD700 !important; }
.status-cancelled { background: rgba(255,180,171,0.12) !important; color: #ffb4ab !important; }
.status-verified { background: rgba(52,152,219,0.12) !important; color: #5dade2 !important; }
.btn-primary-custom { background: #10B954 !important; border-color: #10B954 !important; color: #FFD700 !important; padding: 0.5rem 1.25rem; border-radius: 10px; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s; box-shadow: 0 0 20px -5px rgba(16,185,84,0.3); }
.btn-primary-custom:hover { background: #10B954 !important; color: #FFD700 !important; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(16,185,84,0.4); }
.btn-outline-custom { border: 2px solid #10B954 !important; color: #10B954 !important; padding: 0.5rem 1.25rem; border-radius: 10px; font-weight: 500; background: transparent; transition: all 0.2s; }
.btn-outline-custom:hover { background: rgba(16,185,84,0.1) !important; color: #10B954 !important; }
.btn-outline-secondary-custom { border-color: rgba(255,255,255,0.15) !important; color: #83958c !important; background: transparent !important; }
.btn-outline-secondary-custom:hover { background: rgba(255,255,255,0.06) !important; color: #dee5d9 !important; }
.btn-outline-primary-custom { border-color: #10B954 !important; color: #10B954 !important; background: transparent !important; }
.btn-outline-primary-custom:hover { background: rgba(16,185,84,0.1) !important; color: #10B954 !important; }
.btn-outline-success-custom { border-color: #FFD700 !important; color: #FFD700 !important; background: transparent !important; }
.btn-outline-success-custom:hover { background: rgba(255,215,0,0.1) !important; color: #FFD700 !important; }
.btn-outline-light-custom { border-color: rgba(255,255,255,0.3) !important; color: #dee5d9 !important; background: transparent !important; }
.btn-outline-light-custom:hover { background: rgba(255,255,255,0.1) !important; }
.btn-secondary-custom { background: #30372f !important; border-color: #30372f !important; color: #dee5d9 !important; }
.btn-danger-custom { background: #93000a !important; border-color: #93000a !important; color: #fff !important; }
.quick-actions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; }
.quick-action-item { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.2rem 0.8rem; border-radius: 14px; text-decoration: none; color: #dee5d9; background: rgba(15,21,14,0.7); border: 1px solid rgba(185,203,193,0.1); transition: all 0.25s ease; cursor: pointer; text-align: center; }
.quick-action-item:hover { transform: translateY(-4px); border-color: rgba(16,185,84,0.3); color: #10B954; text-decoration: none; }
.quick-action-item i { font-size: 1.5rem; margin-bottom: 0.4rem; color: #10B954; }
.quick-action-item span { font-size: 0.82rem; font-weight: 500; }
.chart-wrapper { position: relative; height: 300px; width: 100%; }
.btn-action { background: none; border: none; cursor: pointer; padding: 0.4rem; border-radius: 6px; transition: all 0.2s; color: #83958c; display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; }
tr.table-row-hover:hover { background: rgba(16,185,84,0.04) !important; }
.btn-action:hover { background: rgba(255,255,255,0.06); }
.btn-action.view:hover { color: #fbfffa; }
.btn-action.edit:hover { color: #10B954; }
.btn-action.delete:hover { color: #ffb4ab; }
.btn-action.play:hover { color: #FFD700; }
.status-badge-table { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; white-space: nowrap; letter-spacing: 0.03em; }
.progress-custom { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.08); overflow: hidden; }
.progress-custom .progress-bar { border-radius: 4px; background: #10B954 !important; height: 100%; }
.modal-content { background: #171d16 !important; border: 1px solid rgba(185,203,193,0.15) !important; border-radius: 16px; }
.modal-header { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 1.5rem; }
.modal-header .modal-title { color: #10B954; }
.modal-header .btn-close { filter: invert(0.7); }
.modal-body { padding: 1.5rem; color: #dee5d9; }
.modal-footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 1rem 1.5rem; }
.text-muted-custom { color: #83958c !important; }
.text-success-custom { color: #FFD700 !important; }
.text-danger-custom { color: #ffb4ab !important; }
.text-warning-custom { color: #ffc080 !important; }
.text-primary-custom { color: #10B954 !important; }
.form-control, .form-select { background: #252c24 !important; border: 1px solid rgba(185,203,193,0.15) !important; color: #dee5d9 !important; border-radius: 10px; }
.form-control:focus, .form-select:focus { border-color: #10B954 !important; box-shadow: 0 0 0 3px rgba(16,185,84,0.15) !important; }
.form-control::placeholder { color: #83958c; }
.form-check-label { color: #b9cbc1; }
.form-label { color: #b9cbc1; margin-bottom: 0.4rem; font-size: 0.88rem; }
.input-group-text { background: #252c24 !important; border-color: rgba(185,203,193,0.15) !important; color: #83958c !important; }
footer {
    background: rgba(0,0,0,0.5) !important;
    border-top: 1px solid rgba(255,255,255,0.05) !important;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 0.88rem;
    color: #83958c;
    margin-top: auto;
}
footer a { color: #10B954; }
footer a:hover { color: #FFD700; }
@media (max-width: 992px) {
    #sidebar { margin-left: calc(-1 * var(--sidebar-width)); }
    #sidebar.active { margin-left: 0; }
    #content { margin-left: 0; }
    #content.sidebar-open { margin-left: var(--sidebar-width); }
    .navbar .btn-toggle { display: block !important; margin-right: 0.5rem; }
    .navbar .breadcrumb { display: none; }
    .page-section { padding: 1rem; }
    footer { margin-left: 0 !important; }
}
@media (min-width: 993px) { .navbar .btn-toggle { display: none; } }

/* DataTables dark theme overrides */
table.dataTable { background: transparent !important; border: none !important; }
table.dataTable thead th, table.dataTable thead td { border-bottom: 1px solid rgba(255,255,255,0.08) !important; color: #83958c !important; font-weight: 700 !important; font-size: 0.65rem !important; text-transform: uppercase !important; letter-spacing: 0.05em !important; padding: 1rem 0.75rem !important; }
table.dataTable tbody td { border-bottom: 1px solid rgba(255,255,255,0.05) !important; padding: 0.9rem 0.75rem !important; color: #dee5d9 !important; }
table.dataTable tbody tr { background: transparent !important; }
table.dataTable tbody tr:hover { background: rgba(16,185,84,0.04) !important; }
table.dataTable.row-border tbody td, table.dataTable.display tbody td { border-top: none !important; }
table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd { background: rgba(255,255,255,0.02) !important; }
table.dataTable.stripe tbody tr.odd:hover, table.dataTable.display tbody tr.odd:hover { background: rgba(16,185,84,0.06) !important; }
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate { color: #83958c !important; margin-bottom: 1rem; }
.dataTables_wrapper .dataTables_length select { background: #252c24 !important; border: 1px solid rgba(185,203,193,0.15) !important; color: #dee5d9 !important; border-radius: 6px !important; padding: 0.25rem 1.5rem 0.25rem 0.5rem !important; outline: none; }
.dataTables_wrapper .dataTables_filter input { background: #252c24 !important; border: 1px solid rgba(185,203,193,0.15) !important; color: #dee5d9 !important; border-radius: 8px !important; padding: 0.35rem 0.75rem !important; outline: none; margin-left: 0.5rem; }
.dataTables_wrapper .dataTables_filter input:focus { border-color: #10B954 !important; box-shadow: 0 0 0 3px rgba(16,185,84,0.15) !important; }
.dataTables_wrapper .dataTables_paginate .paginate_button { color: #83958c !important; border: none !important; border-radius: 8px !important; padding: 0.35rem 0.75rem !important; margin: 0 0.1rem; background: transparent !important; }
.dataTables_wrapper .dataTables_paginate .paginate_button:hover { color: #10B954 !important; background: rgba(16,185,84,0.1) !important; border: none !important; }
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover { color: #FFD700 !important; background: #10B954 !important; border: none !important; border-radius: 8px !important; font-weight: 600; }
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled { color: #5a6d62 !important; background: transparent !important; }
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover { color: #5a6d62 !important; background: transparent !important; }
.dataTables_wrapper .dataTables_info { font-size: 0.82rem; }
.dataTables_wrapper .dataTables_length { font-size: 0.82rem; }
.dataTables_wrapper .dataTables_length select option { background: #171d16; color: #dee5d9; }
/* Mobile responsive tables - card layout */
@media (max-width: 767.98px) {
    /* Admin & User tables → card layout */
    .glass-card table,
    .card table.table,
    table.table {
        width: 100% !important;
    }
    .glass-card table thead,
    table.table thead {
        display: none !important;
    }
    .glass-card table tbody tr,
    table.table tbody tr {
        display: flex !important;
        flex-direction: column;
        margin-bottom: 0.75rem;
        border: 1px solid rgba(185,203,193,0.12);
        border-radius: 10px;
        padding: 0;
        background: rgba(15,21,14,0.5) !important;
        overflow: hidden;
    }
    .glass-card table tbody td,
    table.table tbody td {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 0.6rem 0.85rem !important;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
        text-align: right;
        font-size: 0.85rem;
        min-height: 38px;
    }
    .glass-card table tbody td:last-child,
    table.table tbody td:last-child {
        border-bottom: none !important;
        justify-content: center;
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .glass-card table tbody td::before,
    table.table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #83958c;
        text-align: left;
        flex-shrink: 0;
        margin-right: 1rem;
    }
    /* Hide data-label on action cells */
    .glass-card table tbody td.no-label::before,
    table.table tbody td.no-label::before {
        content: none;
    }
    /* DataTables specific overrides for mobile */
    table.dataTable thead { display: none !important; }
    table.dataTable tbody tr {
        display: flex !important;
        flex-direction: column;
        margin-bottom: 0.75rem;
        border: 1px solid rgba(185,203,193,0.12);
        border-radius: 10px;
        padding: 0;
        background: rgba(15,21,14,0.5) !important;
        overflow: hidden;
    }
    table.dataTable tbody td {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 0.6rem 0.85rem !important;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
        text-align: right;
        font-size: 0.85rem;
        min-height: 38px;
    }
    table.dataTable tbody td:last-child {
        border-bottom: none !important;
        justify-content: center;
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    table.dataTable tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #83958c;
        text-align: left;
        flex-shrink: 0;
        margin-right: 1rem;
    }
    table.dataTable tbody td.no-label::before {
        content: none;
    }
    table.dataTable.no-footer { border-bottom: none !important; }
    /* DataTables controls responsive */
    .dataTables_wrapper .dataTables_filter,
    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_info,
    .dataTables_wrapper .dataTables_paginate {
        text-align: left !important;
        font-size: 0.78rem;
    }
    .dataTables_wrapper .dataTables_filter { margin-top: 0.5rem; }
    .dataTables_wrapper .dataTables_filter input { width: 100% !important; max-width: 200px; }
    .dataTables_wrapper .dt-buttons { flex-wrap: wrap; }
    .dataTables_wrapper .dataTables_paginate .paginate_button { padding: 0.25rem 0.5rem !important; font-size: 0.75rem; }
    /* Section header responsive */
    .section-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .section-header .actions { width: 100%; }
    .section-header .actions .btn { font-size: 0.75rem; padding: 0.4rem 0.75rem; }
    /* Stat cards responsive */
    .stat-card h3, .stat-card .value { font-size: 0.95rem; }
    .stat-card .icon-box { width: 26px; height: 26px; font-size: 0.7rem; }
    .stat-card p { font-size: 0.55rem; }
    /* Content card responsive */
    .content-card { padding: 1rem; }
    /* Page section responsive */
    .page-section { padding: 0.75rem; }
    /* Navbar responsive */
    .navbar { padding: 0 0.75rem !important; }
    #content .navbar { padding: 0 0.75rem !important; }
    /* User layout sidebar toggle */
    .sidebar-toggle-btn { display: flex !important; }
    /* Footer responsive */
    footer { font-size: 0.75rem; padding: 0.75rem 1rem; }
    /* Empty state rows: full width */
    table tbody td[colspan] { text-align: center !important; justify-content: center !important; padding: 2rem 1rem !important; }
    table tbody td[colspan]::before { content: none !important; }
    /* User layout responsive */
    .user-mobile-nav { display: flex !important; }
}
@media (min-width: 768px) {
    .sidebar-toggle-btn { display: none !important; }
}

.dataTables_wrapper .dt-buttons { margin-bottom: 1rem; display: flex; gap: 0.5rem; float: none; }
button.btn-export { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.3rem 0.85rem; border-radius: 6px; font-size: 0.72rem; font-weight: 600; cursor: pointer; transition: all 0.2s; text-transform: none; letter-spacing: 0.01em; background: rgba(16,185,84,0.1) !important; color: #10B954 !important; border: 1px solid rgba(16,185,84,0.25) !important; }
button.btn-export:hover { background: rgba(16,185,84,0.2) !important; }
.dt-header { display: flex; justify-content: flex-end; margin-bottom: 0.75rem; }
table.dataTable.no-footer { border-bottom: none !important; }
.dataTables_processing { background: rgba(15,21,14,0.9) !important; color: #10B954 !important; border: 1px solid rgba(16,185,84,0.2) !important; }
.dataTables_wrapper .dataTables_scrollHead table.dataTable { border-bottom: none !important; }
