@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #0d1117;
    --surface-color: #131822;
    --card-bg: #171f2c;
    --primary: #007a8a;
    --primary-teal: #007a8a;
    --primary-hover: #009ab0;
    --primary-light: rgba(0, 122, 138, 0.12);
    --secondary-mint: #0d9488;
    --tertiary-purple: #6366f1;
    --secondary-accent: #1e293b;
    --secondary-hover: #334155;
    --dark: #07090e;
    --light-bg: #f4f6fa;
    --border-color: #243044;
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    --glow-border: 0 4px 20px rgba(0, 122, 138, 0.15);
    --glow-hover: 0 8px 30px rgba(0, 122, 138, 0.25);
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    
    /* Sunken form inputs for dark mode */
    --input-bg: #090c10;
    --input-border: #2e3d55;
}

* {
    font-family: 'Poppins', sans-serif !important;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Auth Pages Styling */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #121212 0%, #0A0A0A 100%);
    padding: 20px;
}

.auth-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--glow-border);
    background: var(--surface-color);
    overflow: hidden;
    max-width: 500px;
    width: 100%;
}

.auth-card .card-header {
    background-color: var(--surface-color);
    border-bottom: 1px solid var(--border-color);
    color: var(--primary);
    padding: 30px;
    text-align: center;
}

.auth-card .card-body {
    padding: 40px 30px;
}

/* Sidebar Navigation */
.sidebar {
    width: 260px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #121319;
    color: var(--text-color);
    z-index: 1000;
    transition: all 0.3s;
    border-right: 1px solid var(--border-color);
}

.sidebar-header {
    padding: 24px 20px;
    background: #121319;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-menu {
    list-style: none;
    padding: 15px 0;
    margin: 0;
    overflow-y: auto;
    height: calc(100vh - 210px);
}

.sidebar-menu li {
    position: relative;
}

/* Prevent section-label li from getting link hover effects */
.sidebar-menu li.sidebar-section-label {
    background: none !important;
    transform: none !important;
    cursor: default;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 20px;
    color: #8e92a2;
    text-decoration: none;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13.5px;
    margin: 2px 12px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.sidebar-menu li a i {
    width: 22px;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s ease;
}

.sidebar-menu li a span:not(.sidebar-badge-soon):not(.sidebar-badge-count) {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Slick Vertical Indicator Bar on Hover/Active ─────── */
.sidebar-menu li a::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 20px;
    background: linear-gradient(180deg, #00e5ff, #00b8d9);
    border-radius: 0 4px 4px 0;
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Hover State */
.sidebar-menu li a:hover {
    color: #ffffff !important;
    background: rgba(0, 229, 255, 0.07) !important;
    transform: translateX(4px);
}

.sidebar-menu li a:hover i {
    color: var(--primary) !important;
    transform: scale(1.15);
}

.sidebar-menu li a:hover::before {
    transform: translateY(-50%) scaleY(1.1);
}

/* Active State */
.sidebar-menu li.active > a {
    color: #ffffff !important;
    background: rgba(0, 229, 255, 0.11) !important;
    font-weight: 600;
}

.sidebar-menu li.active > a i {
    color: var(--primary) !important;
}

.sidebar-menu li.active > a::before {
    transform: translateY(-50%) scaleY(2);
}

/* ── Section Labels (Admin Sidebar Groups) ─────────────── */
.sidebar-section-label {
    display: block;
    padding: 18px 24px 6px 24px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #454859;
    pointer-events: none;
    user-select: none;
    position: relative;
}

.sidebar-section-label::after {
    content: '';
    display: block;
    height: 1px;
    margin-top: 6px;
    background: linear-gradient(90deg, rgba(0,229,255,0.12), transparent);
    border-radius: 2px;
}

/* ── "Soon" Badge on upcoming features ─────────────────── */
.sidebar-badge-soon {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 6px;
    background: rgba(139, 92, 246, 0.18);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-left: auto;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Pending Count Badge ───────────────────────────────── */
.sidebar-badge-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 10px;
    background: rgba(244, 63, 94, 0.2);
    color: #f87171;
    border: 1px solid rgba(244, 63, 94, 0.35);
    margin-left: auto;
    flex-shrink: 0;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.65; }
}

/* ── Logout / Danger Link ──────────────────────────────── */
.sidebar-logout-link {
    color: #f87171 !important;
    opacity: 0.75;
    transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.sidebar-logout-link:hover {
    opacity: 1 !important;
    background: rgba(244, 63, 94, 0.08) !important;
    color: #fca5a5 !important;
    transform: translateX(4px) !important;
}

.sidebar-logout-link i {
    color: #f87171 !important;
}


/* Layout Wrapper */
.main-wrapper {
    margin-left: 260px;
    min-height: 100vh;
    background-color: var(--bg-color);
    transition: all 0.3s;
}

.top-navbar {
    height: 70px;
    background: var(--surface-color);
    border-bottom: 1px solid var(--border-color);
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content-body {
    padding: 30px;
}

/* Premium Dashboard Elements */
.section-header-cyan {
    background-color: var(--primary);
    color: var(--text-dark);
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: var(--glow-border);
}

.dashboard-card {
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    box-shadow: var(--glow-border);
    background: var(--surface-color) !important;
    color: var(--text-color) !important;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

/* Color-Specific Stat Cards & Glows */
.stat-card {
    min-height: 120px !important;
}

.dashboard-card.stat-card-cyan {
    border: 1px solid rgba(0, 188, 212, 0.25) !important;
    border-left: 5px solid var(--primary) !important;
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.15) !important;
}
.dashboard-card.stat-card-cyan:hover {
    box-shadow: 0 0 18px rgba(0, 188, 212, 0.4) !important;
}
.dashboard-card.stat-card-cyan .card-icon-wrapper {
    background-color: rgba(0, 188, 212, 0.1) !important;
    color: var(--primary) !important;
}

.dashboard-card.stat-card-warning {
    border: 1px solid rgba(255, 159, 28, 0.25) !important;
    border-left: 5px solid var(--warning) !important;
    box-shadow: 0 0 10px rgba(255, 159, 28, 0.15) !important;
}
.dashboard-card.stat-card-warning:hover {
    box-shadow: 0 0 18px rgba(255, 159, 28, 0.4) !important;
}
.dashboard-card.stat-card-warning .card-icon-wrapper {
    background-color: rgba(255, 159, 28, 0.1) !important;
    color: var(--warning) !important;
}

.dashboard-card.stat-card-danger {
    border: 1px solid rgba(231, 29, 54, 0.25) !important;
    border-left: 5px solid var(--danger) !important;
    box-shadow: 0 0 10px rgba(231, 29, 54, 0.15) !important;
}
.dashboard-card.stat-card-danger:hover {
    box-shadow: 0 0 18px rgba(231, 29, 54, 0.4) !important;
}
.dashboard-card.stat-card-danger .card-icon-wrapper {
    background-color: rgba(231, 29, 54, 0.1) !important;
    color: var(--danger) !important;
}

.dashboard-card.stat-card-success {
    border: 1px solid rgba(46, 196, 182, 0.25) !important;
    border-left: 5px solid var(--success) !important;
    box-shadow: 0 0 10px rgba(46, 196, 182, 0.15) !important;
}
.dashboard-card.stat-card-success:hover {
    box-shadow: 0 0 18px rgba(46, 196, 182, 0.4) !important;
}
.dashboard-card.stat-card-success .card-icon-wrapper {
    background-color: rgba(46, 196, 182, 0.1) !important;
    color: var(--success) !important;
}


.card {
    background: var(--surface-color) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--glow-border);
    border-radius: 12px !important;
    color: var(--text-color) !important;
}

.card:hover {
    box-shadow: var(--glow-hover);
}

/* Action Card specific styles */
.action-card {
    background: #171923 !important;
    border: 1px solid #2A2D3A !important;
    color: #ffffff !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 140px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-hover);
}

.action-card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
}

.card-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background-color: var(--primary-light);
    color: var(--primary);
}

/* Button Styles */
.btn-primary, .btn-cyan {
    background-color: var(--primary) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    padding: 10px 24px !important;
    transition: all 0.2s !important;
}
.btn-primary:hover, .btn-cyan:hover {
    background-color: var(--primary-hover) !important;
    box-shadow: var(--glow-hover) !important;
}

/* ── Teal Primary Button (Pill-style) ─────────────── */
.btn-teal {
    background: linear-gradient(135deg, #007a8a 0%, #0d9488 100%) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    padding: 9px 22px !important;
    font-size: 13.5px !important;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 14px rgba(0, 122, 138, 0.35) !important;
    transition: all 0.25s ease !important;
}
.btn-teal:hover, .btn-teal:focus {
    background: linear-gradient(135deg, #009ab0 0%, #0f9f93 100%) !important;
    box-shadow: 0 6px 20px rgba(0, 122, 138, 0.5) !important;
    transform: translateY(-1px);
    color: #ffffff !important;
}

/* ── Soft Dark Pill Button (Today / This Month) ──── */
.btn-pill-dark {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #cbd5e1 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    font-weight: 500 !important;
    border-radius: 999px !important;
    padding: 7px 18px !important;
    font-size: 12.5px !important;
    transition: all 0.2s ease !important;
}
.btn-pill-dark:hover {
    background: rgba(0, 122, 138, 0.15) !important;
    border-color: rgba(0, 122, 138, 0.4) !important;
    color: #ffffff !important;
}

/* ── Detailed / Compact Toggle ───────────────────── */
.mode-toggle-group {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}
.mode-toggle-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.mode-toggle-btn.active {
    background: linear-gradient(135deg, #007a8a 0%, #0d9488 100%);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,122,138,0.3);
}

/* ── Soft Icon Badges (for Trending Devices / Stat Cards) ── */
.badge-icon-teal {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(0, 122, 138, 0.15);
    border: 1px solid rgba(0, 122, 138, 0.3);
    color: #00b8d9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.badge-icon-mint {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(13, 148, 136, 0.15);
    border: 1px solid rgba(13, 148, 136, 0.3);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.badge-icon-purple {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #818cf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.badge-icon-amber {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.badge-icon-red {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* ── Trend Badge (growth indicator) ─────────────── */
.trend-badge-up {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10.5px;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 2px 8px;
    border-radius: 999px;
}
.trend-badge-down {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10.5px;
    font-weight: 700;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    padding: 2px 8px;
    border-radius: 999px;
}

/* ── Light Mode Overrides ───────────────────────── */
body.light-mode .btn-pill-dark,
.light-mode .btn-pill-dark {
    background: rgba(0,0,0,0.06) !important;
    color: #475569 !important;
    border-color: rgba(0,0,0,0.12) !important;
}
body.light-mode .btn-pill-dark:hover,
.light-mode .btn-pill-dark:hover {
    background: rgba(0,122,138,0.1) !important;
    border-color: rgba(0,122,138,0.4) !important;
    color: #007a8a !important;
}
body.light-mode .mode-toggle-group,
.light-mode .mode-toggle-group {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.1);
}
body.light-mode .mode-toggle-btn,
.light-mode .mode-toggle-btn {
    color: #64748b;
}
body.light-mode .badge-icon-teal,
.light-mode .badge-icon-teal {
    background: rgba(0, 122, 138, 0.1);
    border-color: rgba(0, 122, 138, 0.2);
}
body.light-mode .badge-icon-mint,
.light-mode .badge-icon-mint {
    background: rgba(13, 148, 136, 0.1);
    border-color: rgba(13, 148, 136, 0.2);
}
body.light-mode .badge-icon-purple,
.light-mode .badge-icon-purple {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

.btn-secondary {
    background-color: var(--secondary-accent) !important;
    color: var(--text-color) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 10px 24px !important;
    transition: all 0.2s !important;
}
.btn-secondary:hover {
    background-color: var(--secondary-hover) !important;
}

.btn-light, .btn-inverted {
    background-color: #FFFFFF !important;
    color: var(--text-dark) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    transition: all 0.2s !important;
}
.btn-light:hover {
    background-color: #f1f1f1 !important;
}

.btn-outline-primary, .btn-outline-cyan {
    background-color: transparent !important;
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
    border-radius: 12px !important;
    padding: 8px 22px !important;
    transition: all 0.2s !important;
}
.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    color: var(--text-dark) !important;
    box-shadow: var(--glow-border) !important;
}

/* Form Styles */
.form-label, label {
    font-weight: 600 !important;
    font-size: 13.5px !important;
    letter-spacing: 0.2px;
    margin-bottom: 8px !important;
    display: inline-block;
}
.form-control, .form-select {
    background: var(--input-bg) !important;
    border: 1px solid var(--input-border) !important;
    color: var(--text-color) !important;
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 14px;
    transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px var(--primary-light) !important;
    background: var(--input-bg) !important;
    color: var(--text-color) !important;
}
.form-control::placeholder {
    color: #64748B !important;
}
.form-check-input {
    background-color: var(--input-bg) !important;
    border: 1px solid var(--input-border) !important;
    border-radius: 6px;
    width: 1.2em;
    height: 1.2em;
    cursor: pointer;
}
.form-check-input:checked {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}
.form-switch .form-check-input {
    width: 2.2em;
    border-radius: 20px !important;
}

/* Input Group Styles */
.input-group-text {
    background: var(--input-bg) !important;
    border: 1px solid var(--input-border) !important;
    color: var(--primary) !important;
    border-radius: 10px;
    padding: 11px 16px;
}

.table {
    color: var(--text-color) !important;
}
.table-hover tbody tr:hover {
    background-color: rgba(0, 188, 212, 0.05) !important;
    color: var(--text-color) !important;
}
.table td, .table th {
    border-bottom: 1px solid rgba(0, 122, 138, 0.2) !important;
}

/* Badge Styling */
.badge-premium {
    background: linear-gradient(45deg, #00BCD4, #007A8A);
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 11px;
    letter-spacing: 0.5px;
    box-shadow: var(--glow-border);
}

.badge-free {
    background-color: #333333;
    color: var(--text-muted);
    font-weight: 500;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 11px;
}

/* POS Grid Menu */
.pos-grid-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pos-grid-item:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-hover);
    transform: translateY(-3px);
    color: var(--primary);
}

.pos-grid-item i {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--primary);
}

/* Responsive Footer/Bottom Nav for Mobile */
@media (max-width: 991.98px) {
    .sidebar {
        left: -260px;
    }
    .sidebar.active {
        left: 0;
    }
    .main-wrapper {
        margin-left: 0;
    }
    
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--surface-color);
        border-top: 1px solid var(--border-color);
        display: flex;
        justify-content: space-around;
        align-items: center;
        height: 60px;
        z-index: 1001;
        box-shadow: var(--glow-border);
    }
    
    .mobile-bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #FFFFFF;
        font-size: 10px;
    }
    
    .mobile-bottom-nav-item i {
        font-size: 18px;
        margin-bottom: 3px;
    }
    
    .mobile-bottom-nav-item.active {
        color: var(--primary);
    }
    
    .content-body {
        padding-bottom: 80px;
    }
}

/* Pattern Lock Box */
.pattern-lock-container {
    width: 280px;
    height: 280px;
    background: #121212;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
    touch-action: none;
}

/* Redesigned POS UI/UX styles */
.pos-search-pill {
    border-radius: 12px !important;
    background-color: var(--surface-color) !important;
    border: 1px solid var(--border-color) !important;
    padding: 10px 20px !important;
    color: var(--text-color) !important;
}

.pos-tab-container {
    display: flex;
    gap: 24px;
    border-bottom: 1.5px solid var(--border-color);
    padding-bottom: 2px;
    margin-bottom: 20px;
    overflow-x: auto;
    scrollbar-width: none;
}
.pos-tab-container::-webkit-scrollbar {
    display: none;
}

.pos-tab-btn {
    background: none;
    border: none;
    font-weight: 500;
    color: var(--text-muted);
    padding-bottom: 10px;
    font-size: 15px;
    position: relative;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}
.pos-tab-btn:hover {
    color: var(--text-color);
}
.pos-tab-btn.active {
    color: var(--primary) !important;
    font-weight: 700;
    border-bottom: 3.5px solid var(--primary) !important;
}

.pos-pill-btn {
    border-radius: 12px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.pos-pill-btn:hover {
    background-color: rgba(0, 188, 212, 0.1);
}

.pos-list-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 122, 138, 0.2);
    padding: 18px 0;
    gap: 16px;
}

.pos-list-thumb {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    background-color: var(--surface-color);
    object-fit: cover;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pos-list-thumb i {
    font-size: 32px;
    color: var(--primary);
    opacity: 0.8;
}

.pos-list-details {
    flex-grow: 1;
    min-width: 0;
}

.pos-list-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 2px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.pos-list-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.pos-list-price {
    font-weight: 700;
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 4px;
}

.pos-list-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn-pill-action {
    border-radius: 12px;
    background-color: var(--primary);
    border: none;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.2s;
}
.btn-pill-action:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--glow-border);
}

.btn-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.2s;
}
.btn-icon-circle:hover {
    background-color: rgba(0, 188, 212, 0.1);
}

.fab-yellow {
    position: fixed;
    bottom: 85px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-dark);
    box-shadow: var(--glow-border);
    z-index: 1002;
    transition: transform 0.2s, background-color 0.2s;
    text-decoration: none;
}
.fab-yellow:hover {
    transform: scale(1.1);
    background-color: var(--primary-hover);
}

/* SweetAlert Dark Theme Override */
.swal2-popup {
    background-color: var(--surface-color) !important;
    color: var(--text-color) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--glow-border) !important;
    border-radius: 12px !important;
}
.swal2-title {
    color: var(--text-color) !important;
}
.swal2-html-container {
    color: var(--text-color) !important;
}
.swal2-input {
    background-color: var(--bg-color) !important;
    color: var(--text-color) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
}
.swal2-confirm {
    background-color: var(--primary) !important;
    color: var(--text-dark) !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
}
.swal2-cancel {
    background-color: #333333 !important;
    color: #ffffff !important;
    border-radius: 12px !important;
}

/* Technician chats and community */
.community-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--glow-border);
    margin-bottom: 20px;
    background: var(--surface-color);
}
.community-card .card-header {
    background: none;
    border-bottom: 1px solid rgba(0, 122, 138, 0.2);
    padding: 15px 20px;
}
.community-card .card-body {
    padding: 20px;
}
.community-card .card-footer {
    background: none;
    border-top: 1px solid rgba(0, 122, 138, 0.2);
    padding: 12px 20px;
    display: flex;
    gap: 20px;
}

/* Global UI Visibility & Contrast Overrides */
label, .form-label, .col-form-label {
    color: #CCCCCC !important;
}

.form-control::placeholder, textarea::placeholder, input::placeholder {
    color: #888888 !important;
    opacity: 1 !important;
}

select.form-select option, .form-control option {
    background-color: #121212 !important;
    color: #FFFFFF !important;
}

.table thead th {
    color: #00BCD4 !important;
    background-color: #121212 !important;
    border-bottom: 2px solid var(--border-color) !important;
}

.table tbody tr:nth-child(odd) td {
    background-color: #121212 !important;
    color: #FFFFFF !important;
}

.table tbody tr:nth-child(even) td {
    background-color: #1a1a1a !important;
    color: #FFFFFF !important;
}

.table tbody tr td {
    color: #FFFFFF !important;
}

.modal-content {
    background-color: #121212 !important;
    border: 1px solid #007A8A !important;
    color: #FFFFFF !important;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.3) !important;
}

.modal-header {
    border-bottom: 1px solid rgba(0, 122, 138, 0.2) !important;
    background-color: transparent !important;
}

.modal-footer {
    border-top: 1px solid rgba(0, 122, 138, 0.2) !important;
    background-color: transparent !important;
}

.modal-title {
    color: #00BCD4 !important;
    font-weight: 700 !important;
}

.modal-body {
    color: #FFFFFF !important;
}

.modal-body label {
    color: #CCCCCC !important;
}

.dashboard-card h3 {
    color: #FFFFFF !important;
    font-weight: 700 !important;
}

/* Color Utility Overrides */
.text-primary, .text-cyan {
    color: var(--primary) !important;
}

.text-secondary, .text-muted {
    color: #CCCCCC !important;
}

.text-success {
    color: var(--success) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

.bg-primary, .bg-cyan {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary-accent) !important;
}

.bg-success {
    background-color: var(--success) !important;
}

.bg-danger {
    background-color: var(--danger) !important;
}

.bg-warning {
    background-color: var(--warning) !important;
}

.bg-dark {
    background-color: var(--surface-color) !important;
}

/* Sidebar Profile Bottom Widget */
.sidebar-profile {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    background-color: #121319;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.sidebar-profile-avatar-wrapper {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 52px;
    margin-bottom: 8px;
}
.sidebar-profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00e5ff;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}
.sidebar-profile-status {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #10b981;
    border: 2px solid #121319;
    box-shadow: 0 0 8px #10b981;
}
.sidebar-profile-name {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}
.sidebar-profile-role {
    font-size: 11px;
    color: #7e808c;
    margin: 0;
}

/* Dashboard Layout Grid Split */
.dashboard-grid-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 1200px) {
    .dashboard-grid-split {
        grid-template-columns: 8fr 3fr;
    }
}

/* Premium Dark Cards & Glows */
.premium-card {
    background: #1c1d26 !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
    transition: transform 0.2s, box-shadow 0.2s;
    color: #ffffff !important;
}
.premium-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4) !important;
}

.glow-outline-pink {
    border-color: rgba(255, 75, 114, 0.25) !important;
    box-shadow: 0 4px 20px rgba(255, 75, 114, 0.08) !important;
}
.glow-outline-pink:hover {
    border-color: rgba(255, 75, 114, 0.4) !important;
    box-shadow: 0 8px 24px rgba(255, 75, 114, 0.15) !important;
}

.glow-outline-purple {
    border-color: rgba(181, 95, 230, 0.25) !important;
    box-shadow: 0 4px 20px rgba(181, 95, 230, 0.08) !important;
}
.glow-outline-purple:hover {
    border-color: rgba(181, 95, 230, 0.4) !important;
    box-shadow: 0 8px 24px rgba(181, 95, 230, 0.15) !important;
}

.glow-outline-blue {
    border-color: rgba(59, 130, 246, 0.25) !important;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08) !important;
}
.glow-outline-blue:hover {
    border-color: rgba(59, 130, 246, 0.4) !important;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15) !important;
}

.glow-outline-cyan {
    border-color: rgba(6, 182, 212, 0.25) !important;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.08) !important;
}
.glow-outline-cyan:hover {
    border-color: rgba(6, 182, 212, 0.4) !important;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.15) !important;
}

/* Circular SVG Progress Ring */
.progress-ring-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}
.progress-ring-svg {
    transform: rotate(-90deg);
    width: 80px;
    height: 80px;
}
.progress-ring-circle {
    stroke-dasharray: 220; /* 2 * PI * 35 = 219.9 */
    transition: stroke-dashoffset 0.6s ease-in-out;
    transform-origin: 50% 50%;
}
.progress-ring-text {
    position: absolute;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

/* Search bar styling */
.premium-search-container {
    position: relative;
    max-width: 320px;
    width: 100%;
}
.premium-search-container i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #7e808c;
    font-size: 14px;
}
.premium-search-input {
    padding-left: 40px !important;
    background-color: #1c1d26 !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    font-size: 13px !important;
    height: 38px !important;
}
.premium-search-input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2) !important;
}

/* Right side panel revenue list styling */
.revenue-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.revenue-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.revenue-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background-color: #1e1f28;
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
}
.revenue-item-info {
    flex-grow: 1;
}
.revenue-item-value {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}
.revenue-item-label {
    font-size: 11px;
    color: #7e808c;
    margin: 0;
}

/* Statistics Column Bar Chart */
.bar-chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    padding: 10px 0;
    margin-bottom: 5px;
}
.bar-chart-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}
.bar-chart-bar-wrapper {
    width: 12px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.bar-chart-bar {
    width: 100%;
    background: linear-gradient(180deg, #00e5ff 0%, #007a8a 100%);
    border-radius: 4px;
    transition: height 0.6s ease-in-out;
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.3);
}
.bar-chart-label {
    font-size: 10px;
    color: #7e808c;
    margin-top: 6px;
}

/* ==========================================
   LIGHT MODE STYLES (PREMIUM SAAS TEAL THEME)
   ========================================== */
.light-mode {
    --bg-color: #F8FAFC;
    --surface-color: #FFFFFF;
    --card-bg: #FFFFFF;
    --border-color: #CBD5E1;
    --text-color: #0F172A;
    --text-muted: #64748B;
    --secondary-accent: #F1F5F9;
    --secondary-hover: #E2E8F0;
    --light-bg: #F8FAFC;
    --dark: #FFFFFF;
    
    /* Highly legible primary brand teal for light mode */
    --primary: #0D9488;
    --primary-hover: #0F766E;
    --primary-light: rgba(13, 148, 136, 0.08);

    /* Sunken form inputs for light mode (prominent border) */
    --input-bg: #F8FAFC;
    --input-border: #94A3B8;
}

/* Base Body & Layout Overrides */
.light-mode body {
    background: #F8FAFC !important;
    color: #0F172A !important;
}

.light-mode .main-wrapper {
    background: #F8FAFC !important;
}

/* Sidebar Light Mode */
.light-mode .sidebar {
    background: #FFFFFF !important;
    border-right: 1px solid #CBD5E1 !important;
}

.light-mode .sidebar-header {
    background: #FFFFFF !important;
    border-bottom: 1px solid #CBD5E1 !important;
}

.light-mode .sidebar-header .text-white {
    color: #0F172A !important;
}

.light-mode .sidebar-menu li a {
    color: #475569 !important;
}

.light-mode .sidebar-menu li a:hover {
    color: #0D9488 !important;
    background: rgba(13, 148, 136, 0.08) !important;
}

.light-mode .sidebar-menu li a:hover i {
    color: #0D9488 !important;
}

.light-mode .sidebar-menu li.active a {
    color: #0D9488 !important;
    background: rgba(13, 148, 136, 0.12) !important;
    font-weight: 600;
}

.light-mode .sidebar-menu li.active a i {
    color: #0D9488 !important;
}

.light-mode .sidebar-profile {
    background: #FFFFFF !important;
    border-top: 1px solid #CBD5E1 !important;
}

.light-mode .sidebar-profile-name {
    color: #0F172A !important;
}

.light-mode .sidebar-profile-role {
    color: #64748B !important;
}

/* Top Navbar Light Mode */
.light-mode .top-navbar {
    background: #FFFFFF !important;
    border-bottom: 1px solid #CBD5E1 !important;
}

.light-mode .top-navbar .text-white,
.light-mode .top-navbar h5 {
    color: #0F172A !important;
}

.light-mode .top-navbar i {
    color: #475569 !important;
}

.light-mode .premium-search-input {
    background: #F1F5F9 !important;
    border: 1px solid #CBD5E1 !important;
    color: #0F172A !important;
}

.light-mode .premium-search-input::placeholder {
    color: #94A3B8 !important;
}

/* Cards & Components Light Mode (using background shorthand to override inline styles) */
.light-mode .card,
.light-mode .overview-card,
.light-mode .action-card,
.light-mode .premium-card,
.light-mode .community-card,
.light-mode .modal-content {
    background: #FFFFFF !important;
    border: 1px solid #CBD5E1 !important;
    color: #0F172A !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.03) !important;
}

.light-mode .card:hover,
.light-mode .overview-card:hover,
.light-mode .action-card:hover,
.light-mode .premium-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
}

.light-mode .action-card .text-white {
    color: #0F172A !important;
}

/* Form Controls Light Mode */
.light-mode .form-control,
.light-mode .form-select {
    background: #FFFFFF !important;
    border: 1px solid #CBD5E1 !important;
    color: #0F172A !important;
}

.light-mode .form-control:focus,
.light-mode .form-select:focus {
    border-color: #0D9488 !important;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15) !important;
}

.light-mode .form-control::placeholder {
    color: #94A3B8 !important;
}

/* Table Light Mode */
.light-mode .table {
    color: #0F172A !important;
}

.light-mode .table thead th {
    background: #F1F5F9 !important;
    color: #0F172A !important;
    border-bottom: 2px solid #CBD5E1 !important;
}

.light-mode .table tbody tr:nth-child(odd) td {
    background: #FFFFFF !important;
    color: #334155 !important;
}

.light-mode .table tbody tr:nth-child(even) td {
    background: #F8FAFC !important;
    color: #334155 !important;
}

.light-mode .table tbody tr td {
    color: #334155 !important;
    border-bottom: 1px solid #CBD5E1 !important;
}

/* Text & Colors Overrides in Light Mode */
.light-mode .text-white,
.light-mode [class*="text-white"],
.light-mode .action-card .text-white {
    color: #0F172A !important;
}

.light-mode .text-cyan,
.light-mode .text-primary,
.light-mode [class*="text-cyan"],
.light-mode [class*="text-primary"] {
    color: #0D9488 !important;
}

.light-mode .text-secondary,
.light-mode .text-muted,
.light-mode [class*="text-secondary"],
.light-mode [class*="text-muted"] {
    color: #64748B !important;
}

.light-mode h1,
.light-mode h2,
.light-mode h3,
.light-mode h4,
.light-mode h5,
.light-mode h6 {
    color: #0F172A !important;
}

/* Button & Interactive Contrasts in Light Mode */
.light-mode .btn-primary,
.light-mode .btn-cyan,
.light-mode .btn-pill-action {
    background: #0D9488 !important;
    color: #FFFFFF !important;
    border: none !important;
}

.light-mode .btn-primary:hover,
.light-mode .btn-cyan:hover,
.light-mode .btn-pill-action:hover {
    background: #0F766E !important;
    color: #FFFFFF !important;
}

/* Specific elements & overlays */
.light-mode .dropdown-menu {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
}

.light-mode .dropdown-item {
    color: #334155 !important;
}

.light-mode .dropdown-item:hover {
    background: #F1F5F9 !important;
    color: #0F172A !important;
}

.light-mode .dropdown-divider {
    border-color: #E2E8F0 !important;
}

.light-mode .revenue-item-icon {
    background: #F1F5F9 !important;
    border: 1px solid #E2E8F0 !important;
    color: #0F172A !important;
}

.light-mode .revenue-item-value {
    color: #0F172A !important;
}

.light-mode .progress-ring-text {
    color: #0F172A !important;
}

.light-mode .bar-chart-bar-wrapper {
    background: #F1F5F9 !important;
}

/* Dashboard Specific Overrides in Light Mode */
.light-mode .dashboard-container {
    color: #0F172A !important;
}

.light-mode .badge {
    background: #F1F5F9 !important;
    border-color: #E2E8F0 !important;
    color: #0D9488 !important;
}

/* Global Form Labels & Inputs Override in Light Mode */
.light-mode label,
.light-mode .form-label,
.light-mode .col-form-label,
.light-mode .modal-body label {
    color: #334155 !important;
}

.light-mode select.form-select option,
.light-mode .form-control option {
    background: #FFFFFF !important;
    color: #0F172A !important;
}

/* Global Table Dark Override in Light Mode */
.light-mode .table-dark {
    --bs-table-bg: #FFFFFF !important;
    --bs-table-color: #0F172A !important;
    --bs-table-striped-bg: #F8FAFC !important;
    --bs-table-striped-color: #334155 !important;
    --bs-table-border-color: #E2E8F0 !important;
    background: #FFFFFF !important;
    color: #0F172A !important;
    border-color: #E2E8F0 !important;
}

/* Redesigned Repairs Table Custom Styling */
.problem-pill {
    font-size: 11px;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    border-radius: 6px;
    padding: 3px 8px;
    display: inline-block;
    white-space: nowrap;
}

.light-mode .problem-pill {
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #334155;
}

.status-select {
    font-size: 11px !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    padding: 4px 28px 4px 10px !important;
    cursor: pointer;
    width: auto;
    display: inline-block;
    border-width: 1.5px !important;
    background-size: 10px 10px !important;
}

.status-pending {
    color: #ffb020 !important;
    border-color: rgba(255, 176, 32, 0.3) !important;
    background-color: rgba(255, 176, 32, 0.05) !important;
}

.status-repaired {
    color: #00e5ff !important;
    border-color: rgba(0, 229, 255, 0.3) !important;
    background-color: rgba(0, 229, 255, 0.05) !important;
}

.status-delivered {
    color: #10b981 !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
    background-color: rgba(16, 185, 129, 0.05) !important;
}

.status-cancelled {
    color: #ff4b72 !important;
    border-color: rgba(255, 75, 114, 0.3) !important;
    background-color: rgba(255, 75, 114, 0.05) !important;
}

/* Light Mode Status Selects */
.light-mode .status-pending {
    color: #b25e00 !important;
    border-color: rgba(178, 94, 0, 0.3) !important;
    background-color: rgba(255, 176, 32, 0.1) !important;
}

.light-mode .status-repaired {
    color: #0d9488 !important;
    border-color: rgba(13, 148, 136, 0.3) !important;
    background-color: rgba(13, 148, 136, 0.1) !important;
}

.light-mode .status-delivered {
    color: #059669 !important;
    border-color: rgba(5, 150, 105, 0.3) !important;
    background-color: rgba(16, 185, 129, 0.1) !important;
}

.light-mode .status-cancelled {
    color: #dc2626 !important;
    border-color: rgba(220, 38, 38, 0.3) !important;
    background-color: rgba(255, 75, 114, 0.1) !important;
}
.btn-icon {
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    font-size: 15px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-outline-cyan {
    color: #00e5ff;
    border-color: #00e5ff;
    background: transparent;
}

.btn-outline-cyan:hover {
    color: #090a0f;
    background-color: #00e5ff;
    border-color: #00e5ff;
}

.light-mode .btn-outline-cyan {
    color: #0d9488;
    border-color: #0d9488;
}

.light-mode .btn-outline-cyan:hover {
    color: #ffffff;
    background-color: #0d9488;
    border-color: #0d9488;
}

/* Premium Reminder Stat Cards Animation */
.reminder-stat-card {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
}

/* Subtle background glow effect on card hover */
.reminder-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.reminder-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary) !important;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.12) !important;
}

.reminder-stat-card:hover::before {
    opacity: 1;
}

/* Specific hover glow for Customer Credits (POS) card */
.reminder-stat-card.card-credits::before {
    background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
}

.reminder-stat-card.card-credits:hover {
    border-color: var(--success) !important;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.12) !important;
}

/* Specific hover glow for Total Outstanding card */
.reminder-stat-card.card-total::before {
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.reminder-stat-card.card-total:hover {
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08) !important;
}

/* Number scaling animation on card hover */
.reminder-stat-card .fs-3 {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    transform-origin: left center;
}

.reminder-stat-card:hover .fs-3 {
    transform: scale(1.05);
}

/* Light Mode adaptations */
.light-mode .reminder-stat-card {
    background-color: #FFFFFF !important;
    border-color: #E2E8F0 !important;
}

.light-mode .reminder-stat-card:hover {
    border-color: #0D9488 !important;
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.1) !important;
}

.light-mode .reminder-stat-card.card-credits:hover {
    border-color: #059669 !important;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.1) !important;
}

.light-mode .reminder-stat-card.card-total:hover {
    border-color: #0F172A !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
}

/* Smartphone Mockup Customer Profile Modal Styles */
.customer-name-link {
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.customer-name-link:hover {
    color: var(--primary) !important;
    border-bottom-color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.light-mode .customer-name-link {
    color: #0F172A !important;
    border-bottom-color: rgba(15, 23, 42, 0.2);
}

.light-mode .customer-name-link:hover {
    color: #0D9488 !important;
    border-bottom-color: #0D9488;
    text-shadow: none;
}

.phone-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(9, 10, 15, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.phone-modal-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.phone-frame {
    width: 320px;
    height: 640px;
    background-color: #090a0f;
    border: 12px solid #1e202c;
    border-radius: 44px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 
                inset 0 0 0 2px rgba(255, 255, 255, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transform: scale(0.8) translateY(50px);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.phone-modal-backdrop.show .phone-frame {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Realistic Dynamic Island / Notch */
.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background-color: #1e202c;
    border-radius: 12px;
    z-index: 2010;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Smartphone Screen Content */
.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #0d0e14;
    color: #cbd5e1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 35px 16px 20px 16px;
    display: flex;
    flex-direction: column;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.phone-screen::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

/* Top Status Bar Mockup */
.phone-status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    z-index: 2009;
    pointer-events: none;
}

.phone-status-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Bottom Home Indicator Bar Mockup */
.phone-home-bar {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    z-index: 2010;
    pointer-events: none;
}

/* Premium Mobile App Styles Inside Phone Screen */
.app-avatar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 0 25px 0;
}

.app-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #0d9488 100%);
    color: #090a0f;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.app-customer-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 2px;
    text-align: center;
}

.app-customer-phone {
    font-size: 13px;
    color: var(--text-muted);
}

/* Info Cards Inside Phone */
.app-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 15px;
}

.app-card-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.app-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 12.5px;
}

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

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

.app-info-value {
    font-weight: 500;
    color: #e2e8f0;
    text-align: right;
}

/* Problems Pills */
.app-problems-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.app-problem-pill {
    font-size: 11px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    padding: 4px 10px;
    border-radius: 8px;
}

/* Pricing Highlight Box */
.app-price-box {
    background-color: rgba(0, 229, 255, 0.03);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.app-price-box.due-box {
    background-color: rgba(255, 75, 114, 0.04);
    border-color: rgba(255, 75, 114, 0.12);
}

.app-price-box-label {
    font-size: 11px;
    font-weight: 600;
    color: #cbd5e1;
}

.app-price-box-val {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.app-price-box.due-box .app-price-box-val {
    color: var(--danger);
}

/* Sleek App Buttons */
.app-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.app-btn-primary {
    background-color: var(--primary);
    color: #090a0f;
}

.app-btn-primary:hover {
    background-color: var(--primary-hover);
    transform: scale(1.02);
}

.app-btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Close Link */
.app-close-link {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    text-align: center;
    margin-top: 25px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.app-close-link:hover {
    color: var(--danger);
}

/* Light Mode adaptations inside Virtual Screen */
.light-mode .phone-frame {
    background-color: #F8FAFC;
    border-color: #0F172A;
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.3), 
                inset 0 0 0 2px rgba(15, 23, 42, 0.05);
}

.light-mode .phone-notch {
    background-color: #0F172A;
}

.light-mode .phone-screen {
    background-color: #FFFFFF;
    color: #334155;
}

.light-mode .phone-status-bar {
    color: rgba(15, 23, 42, 0.7);
}

.light-mode .phone-home-bar {
    background-color: rgba(15, 23, 42, 0.3);
}

.light-mode .app-avatar {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.2);
}

.light-mode .app-customer-name {
    color: #0F172A;
}

.light-mode .app-card {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
}

.light-mode .app-info-value {
    color: #0F172A;
}

.light-mode .app-problem-pill {
    background-color: #F1F5F9;
    border: 1px solid #E2E8F0;
    color: #334155;
}

.light-mode .app-price-box {
    background-color: rgba(13, 148, 136, 0.03);
    border-color: rgba(13, 148, 136, 0.15);
}

.light-mode .app-price-box.due-box {
    background-color: rgba(220, 38, 38, 0.03);
    border-color: rgba(220, 38, 38, 0.15);
}

.light-mode .app-price-box-val {
    color: #0d9488;
}

.light-mode .app-btn-primary {
    background-color: #0D9488;
    color: #ffffff;
}

.light-mode .app-btn-primary:hover {
    background-color: #0F766E;
}

.light-mode .app-btn-secondary {
    background-color: #F1F5F9;
    color: #0F172A;
    border-color: #E2E8F0;
}

.light-mode .app-btn-secondary:hover {
    background-color: #E2E8F0;
}

/* Sidebar Dropdown & Submenu Styles */
.sidebar-submenu {
    list-style: none;
    padding-left: 0 !important;
    margin-bottom: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sidebar-submenu li a {
    padding: 8px 18px 8px 45px !important; /* Indented for hierarchy */
    font-size: 13px !important;
    margin: 2px 16px !important;
}

/* Submenu Hover / Active State */
.sidebar-submenu li a:hover {
    color: #ffffff !important;
    background: rgba(20, 184, 166, 0.05) !important;
}

.sidebar-submenu li.active-sub a {
    color: #ffffff !important;
    background: rgba(20, 184, 166, 0.1) !important;
    font-weight: 600;
}

.sidebar-submenu li.active-sub a i {
    color: var(--primary) !important;
}

.sidebar-submenu li.active-sub a::before {
    content: '';
    position: absolute;
    left: 20px; /* Aligned with sub-links */
    top: 50%;
    transform: translateY(-50%) scaleY(1.3);
    width: 4px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 4px;
}

/* Dropdown toggles should have pointer cursors */
.sidebar-dropdown-toggle {
    cursor: pointer !important;
}

/* Light Mode Overrides for Submenu Active State */
body.light-mode .sidebar-submenu li.active-sub a,
.light-mode .sidebar-submenu li.active-sub a {
    background: rgba(13, 148, 136, 0.08) !important;
    color: #0d9488 !important;
}
body.light-mode .sidebar-submenu li.active-sub a i,
.light-mode .sidebar-submenu li.active-sub a i {
    color: #0d9488 !important;
}
body.light-mode .sidebar-submenu li.active-sub a::before,
.light-mode .sidebar-submenu li.active-sub a::before {
    background-color: #0d9488 !important;
}/* Clean styles for customer name link - no underline */
.customer-name-link {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.customer-name-link:hover {
    color: var(--primary) !important;
    text-decoration: none !important;
}

.light-mode .customer-name-link {
    color: #0F172A !important;
}

.light-mode .customer-name-link:hover {
    color: #0D9488 !important;
}

/* Premium Glassmorphic Glowing Action Buttons */
.btn-icon.btn-outline-success {
    background-color: rgba(16, 185, 129, 0.12) !important;
    border: 1.5px solid rgba(16, 185, 129, 0.4) !important;
    color: #10b981 !important;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.15) !important;
}
.btn-icon.btn-outline-success:hover {
    background-color: #10b981 !important;
    border-color: #10b981 !important;
    color: #090a0f !important;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.5) !important;
}

.btn-icon.btn-outline-cyan {
    background-color: rgba(0, 229, 255, 0.12) !important;
    border: 1.5px solid rgba(0, 229, 255, 0.4) !important;
    color: #00e5ff !important;
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.15) !important;
}
.btn-icon.btn-outline-cyan:hover {
    background-color: #00e5ff !important;
    border-color: #00e5ff !important;
    color: #090a0f !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5) !important;
}

.btn-icon.btn-outline-primary {
    background-color: rgba(59, 130, 246, 0.12) !important;
    border: 1.5px solid rgba(59, 130, 246, 0.4) !important;
    color: #3b82f6 !important;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.15) !important;
}
.btn-icon.btn-outline-primary:hover {
    background-color: #3b82f6 !important;
    border-color: #3b82f6 !important;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5) !important;
}

.btn-icon.btn-outline-danger {
    background-color: rgba(255, 75, 114, 0.12) !important;
    border: 1.5px solid rgba(255, 75, 114, 0.4) !important;
    color: #ff4b72 !important;
    box-shadow: 0 0 8px rgba(255, 75, 114, 0.15) !important;
}
.btn-icon.btn-outline-danger:hover {
    background-color: #ff4b72 !important;
    border-color: #ff4b72 !important;
    color: #090a0f !important;
    box-shadow: 0 0 15px rgba(255, 75, 114, 0.5) !important;
}

/* Light Mode Overrides for Action Buttons */
.light-mode .btn-icon.btn-outline-success {
    background-color: rgba(16, 185, 129, 0.08) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
    color: #059669 !important;
    box-shadow: none !important;
}
.light-mode .btn-icon.btn-outline-success:hover {
    background-color: #059669 !important;
    border-color: #059669 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2) !important;
}

.light-mode .btn-icon.btn-outline-cyan {
    background-color: rgba(13, 148, 136, 0.08) !important;
    border-color: rgba(13, 148, 136, 0.3) !important;
    color: #0d9488 !important;
    box-shadow: none !important;
}
.light-mode .btn-icon.btn-outline-cyan:hover {
    background-color: #0d9488 !important;
    border-color: #0d9488 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2) !important;
}

.light-mode .btn-icon.btn-outline-primary {
    background-color: rgba(37, 99, 235, 0.08) !important;
    border-color: rgba(37, 99, 235, 0.3) !important;
    color: #2563eb !important;
    box-shadow: none !important;
}
.light-mode .btn-icon.btn-outline-primary:hover {
    background-color: #2563eb !important;
    border-color: #2563eb !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2) !important;
}

.light-mode .btn-icon.btn-outline-danger {
    background-color: rgba(220, 38, 38, 0.08) !important;
    border-color: rgba(220, 38, 38, 0.3) !important;
    color: #dc2626 !important;
    box-shadow: none !important;
}
.light-mode .btn-icon.btn-outline-danger:hover {
    background-color: #dc2626 !important;
    border-color: #dc2626 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2) !important;
}

/* Table Header Sorting Links */
.table thead th a {
    text-decoration: none !important;
    color: inherit !important;
    transition: color 0.2s ease;
}
.table thead th a:hover {
    color: var(--primary) !important;
}
.light-mode .table thead th a:hover {
    color: #0d9488 !important;
}

/* Shop Type Modal Custom Styling */
.shop-type-item {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border-radius: 8px !important;
    background-color: transparent !important;
}

.shop-type-item:hover {
    background-color: rgba(0, 188, 212, 0.08) !important;
    color: #00bcd4 !important;
    transform: translateX(4px);
}

.shop-type-item.active {
    background-color: rgba(0, 188, 212, 0.12) !important;
    color: #00bcd4 !important;
}

#shopTypeSearchInput:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 188, 212, 0.2) !important;
    border-color: #00bcd4 !important;
}

/* ─────────────────────────────────────────────────────────────
   REPAIRFLUX UI/UX DESIGN SYSTEM OVERRIDES (DARK & LIGHT MODE)
   ───────────────────────────────────────────────────────────── */

/* Light Mode Core Overrides (Matching REPAIRFLUX Reference) */
body.light-mode,
.light-mode {
    background-color: #f4f6fa !important;
    color: #0f172a !important;
}

/* Sidebar Clean Overrides */
body.light-mode .sidebar,
.light-mode .sidebar {
    background-color: #ffffff !important;
    border-right: 1px solid #e2e8f0 !important;
}

body.light-mode .sidebar-header,
.light-mode .sidebar-header {
    background-color: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

body.light-mode .sidebar-menu li a,
.light-mode .sidebar-menu li a {
    color: #475569 !important;
    background-color: transparent !important;
}

body.light-mode .sidebar-menu li a:hover,
.light-mode .sidebar-menu li a:hover {
    background-color: #f1f5f9 !important;
    color: #0f172a !important;
}

body.light-mode .sidebar-menu li.active > a,
.light-mode .sidebar-menu li.active > a {
    background-color: #f1f5f9 !important;
    color: #0d9488 !important;
    font-weight: 600 !important;
}

body.light-mode .sidebar-submenu,
.light-mode .sidebar-submenu {
    background-color: transparent !important;
}

body.light-mode .sidebar-submenu li a,
.light-mode .sidebar-submenu li a {
    background-color: transparent !important;
    color: #475569 !important;
}

body.light-mode .sidebar-submenu li a:hover,
.light-mode .sidebar-submenu li a:hover {
    background-color: #f1f5f9 !important;
    color: #0f172a !important;
}

body.light-mode .sidebar-submenu li.active-sub a,
.light-mode .sidebar-submenu li.active-sub a,
body.light-mode .sidebar-submenu li.active a,
.light-mode .sidebar-submenu li.active a {
    background-color: #e0f2fe !important;
    color: #0284c7 !important;
    font-weight: 600 !important;
}

/* Sticky Toolbar & Filters Light Mode Overrides */
body.light-mode .sticky-toolbar,
.light-mode .sticky-toolbar,
body.light-mode .search-filter-card,
.light-mode .search-filter-card {
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03) !important;
}

body.light-mode .filter-input,
.light-mode .filter-input,
body.light-mode #searchInput,
.light-mode #searchInput,
body.light-mode .form-control,
.light-mode .form-control,
body.light-mode .form-select,
.light-mode .form-select {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
}

body.light-mode .status-tabs,
.light-mode .status-tabs {
    border-top-color: #e2e8f0 !important;
}

body.light-mode .status-tab-btn,
.light-mode .status-tab-btn {
    background-color: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
    color: #475569 !important;
}

body.light-mode .status-tab-btn:hover,
.light-mode .status-tab-btn:hover {
    background-color: #e2e8f0 !important;
    color: #0f172a !important;
}

body.light-mode .status-tab-btn.active,
.light-mode .status-tab-btn.active {
    background-color: #0d9488 !important;
    color: #ffffff !important;
    border-color: #0d9488 !important;
}

body.light-mode .status-tab-btn .tab-count,
.light-mode .status-tab-btn .tab-count {
    background-color: #e2e8f0 !important;
    color: #0f172a !important;
}

body.light-mode .status-tab-btn.active .tab-count,
.light-mode .status-tab-btn.active .tab-count {
    background-color: #ffffff !important;
    color: #0d9488 !important;
}

body.light-mode .glass-card,
.light-mode .glass-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
    color: #0f172a !important;
}

body.light-mode .overview-card,
.light-mode .overview-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
}

body.light-mode .card-sales,
.light-mode .card-sales {
    background: #eff6ff !important;
    border-color: #dbeafe !important;
}
body.light-mode .card-sales .fw-bold,
.light-mode .card-sales .fw-bold {
    color: #1e40af !important;
}

body.light-mode .card-profit,
.light-mode .card-profit {
    background: #ecfdf5 !important;
    border-color: #a7f3d0 !important;
}
body.light-mode .card-profit .fw-bold,
.light-mode .card-profit .fw-bold {
    color: #047857 !important;
}

body.light-mode .card-pending,
.light-mode .card-pending {
    background: #fff7ed !important;
    border-color: #ffedd5 !important;
}
body.light-mode .card-pending .fw-bold,
.light-mode .card-pending .fw-bold {
    color: #c2410c !important;
}

body.light-mode .action-tile,
.light-mode .action-tile {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04) !important;
}
body.light-mode .action-tile .action-tile-label,
.light-mode .action-tile .action-tile-label {
    color: #0f172a !important;
    font-weight: 600 !important;
}
body.light-mode .action-tile:hover,
.light-mode .action-tile:hover {
    border-color: #0d9488 !important;
    background: #f0fdfa !important;
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.12) !important;
}

body.light-mode .recent-repair-card,
.light-mode .recent-repair-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #0f172a !important;
}
body.light-mode .recent-repair-card:hover,
.light-mode .recent-repair-card:hover {
    background: #f8fafc !important;
    border-color: #0d9488 !important;
}

body.light-mode .customer-name-label,
.light-mode .customer-name-label {
    color: #0f172a !important;
}
body.light-mode .device-name-label,
.light-mode .device-name-label {
    color: #64748b !important;
}

body.light-mode .text-white,
.light-mode .text-white {
    color: #0f172a !important;
}
body.light-mode .text-secondary,
.light-mode .text-secondary {
    color: #64748b !important;
}

body.light-mode .badge-ready,
.light-mode .badge-ready {
    background: #d1fae5 !important;
    color: #047857 !important;
    border: 1px solid #a7f3d0 !important;
}
body.light-mode .badge-inprogress,
.light-mode .badge-inprogress {
    background: #dbeafe !important;
    color: #1e40af !important;
    border: 1px solid #bfdbfe !important;
}
body.light-mode .badge-pending,
.light-mode .badge-pending {
    background: #fef3c7 !important;
    color: #b45309 !important;
    border: 1px solid #fde68a !important;
}

