/* ==================== SUPERA GLIA - ESTILOS ==================== */

:root {
    --supera-orange: #F37021;
    --supera-orange-dark: #D85F15;
    --supera-orange-light: #FEF3EC;
    --supera-black: #231F20;
    --supera-gray: #4A4A4A;
}

* { 
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; 
}

/* ==================== TRANSIÇÕES ==================== */
.sidebar-transition { 
    transition: all 0.3s ease; 
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar { 
    width: 6px; 
    height: 6px; 
}

::-webkit-scrollbar-track { 
    background: #f5f5f5; 
    border-radius: 3px; 
}

::-webkit-scrollbar-thumb { 
    background: #d1d5db; 
    border-radius: 3px; 
}

::-webkit-scrollbar-thumb:hover { 
    background: #9ca3af; 
}

/* ==================== LOGIN ==================== */
.login-bg { 
    background: linear-gradient(145deg, #F37021 0%, #E8601A 50%, #D85510 100%); 
}

/* ==================== LOADING ==================== */
#loading-screen { 
    position: fixed; 
    inset: 0; 
    background: linear-gradient(145deg, #F37021 0%, #E8601A 50%, #D85510 100%); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    z-index: 9999; 
}

.loader { 
    width: 48px; 
    height: 48px; 
    border: 4px solid rgba(255,255,255,0.3); 
    border-top-color: white; 
    border-radius: 50%; 
    animation: spin 1s linear infinite; 
}

@keyframes spin { 
    to { transform: rotate(360deg); } 
}

/* ==================== ANIMAÇÕES ==================== */
@keyframes slideUp { 
    from { opacity: 0; transform: translateY(20px); } 
    to { opacity: 1; transform: translateY(0); } 
}

@keyframes pulse { 
    0%, 100% { opacity: 1; } 
    50% { opacity: 0.7; } 
}

.card-animate { 
    animation: slideUp 0.4s ease-out; 
}

/* ==================== CARDS DE TURMA ==================== */
.turma-card { 
    transition: all 0.2s ease; 
    animation: slideUp 0.4s ease-out; 
}

.turma-card:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 24px rgba(0,0,0,0.12); 
}

/* ==================== CHIPS DE ALUNO ==================== */
.aluno-chip { 
    transition: all 0.15s ease; 
    cursor: pointer; 
}

.aluno-chip:hover { 
    transform: scale(1.02); 
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
}

/* ==================== BARRA DE OCUPAÇÃO ==================== */
.ocupacao-bar { 
    transition: width 0.5s ease; 
}

/* ==================== MODAL ==================== */
.modal-overlay { 
    background: rgba(35,31,32,0.6); 
    backdrop-filter: blur(8px); 
}

/* ==================== BADGES ==================== */
.ausente-badge { 
    animation: pulse 2s infinite; 
}

/* ==================== IFRAMES ==================== */
.chatwoot-frame { 
    border: none; 
    width: 100%; 
    height: calc(100vh - 73px); 
}

/* ==================== BOTÕES SUPERA ==================== */
.btn-supera { 
    background: var(--supera-orange); 
    box-shadow: 0 4px 14px rgba(243, 112, 33, 0.4); 
}

.btn-supera:hover { 
    background: var(--supera-orange-dark); 
    transform: translateY(-1px); 
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.5); 
}

/* ==================== INPUTS ==================== */
input:focus, select:focus { 
    outline: none; 
    border-color: var(--supera-orange) !important; 
    box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.15) !important; 
}

/* ==================== STAT CARDS ==================== */
.stat-card { 
    transition: all 0.2s ease; 
}

.stat-card:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 24px rgba(0,0,0,0.1); 
}

/* ==================== TABELAS ==================== */
.table-container {
    overflow-x: auto;
}

.table-container table {
    width: 100%;
}

/* ==================== FILTROS ==================== */
.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-end;
}

/* ==================== RESPONSIVO ==================== */
@media (max-width: 768px) {
    .sidebar-transition {
        margin-left: 0 !important;
    }
}

/* ==================== PWA MOBILE ==================== */

/* Bottom navigation bar (mobile) */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #231F20 0%, #1a1718 100%);
    z-index: 60;
    padding: 4px 0 env(safe-area-inset-bottom, 4px) 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav::-webkit-scrollbar {
    display: none;
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    padding: 0 4px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 10px;
    min-width: 56px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: none;
    white-space: nowrap;
}

.mobile-nav-item.active {
    color: #F37021;
    background: rgba(243,112,33,0.15);
}

.mobile-nav-item svg {
    margin-bottom: 2px;
}

/* Mobile menu (more items) */
.mobile-more-menu {
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    background: #231F20;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px 16px 0 0;
    padding: 16px;
    z-index: 59;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-height: 60vh;
    overflow-y: auto;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.5);
}

/* PWA install banner */
.pwa-install-banner {
    position: fixed;
    bottom: 70px;
    left: 16px;
    right: 16px;
    background: linear-gradient(135deg, #F37021, #D85F15);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(243,112,33,0.4);
    z-index: 55;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideUp 0.3s ease-out;
}

/* Push notification toggle */
.push-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.push-toggle:hover {
    background: rgba(255,255,255,0.15);
}

.push-toggle.active {
    background: rgba(34,197,94,0.2);
    color: #22c55e;
}

/* Standalone (installed) mode */
@media (display-mode: standalone) {
    body {
        padding-top: env(safe-area-inset-top, 0);
    }
}

/* ==================== RESPONSIVE MOBILE ==================== */
@media (max-width: 768px) {
    /* Hide sidebar on mobile */
    aside.fixed {
        display: none !important;
    }

    /* Remove sidebar margin */
    .sidebar-transition {
        margin-left: 0 !important;
    }

    /* Show bottom nav */
    .mobile-nav {
        display: block;
    }

    /* Add bottom padding for nav */
    main {
        padding-bottom: 64px !important;
    }

    /* Content padding */
    main > div {
        padding: 12px !important;
    }

    /* Hide sidebar toggle button */
    button.fixed.z-50 {
        display: none !important;
    }

    /* Cards grid responsive */
    .grid-cols-2, .grid-cols-3, .grid-cols-4, .grid-cols-5 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Sub-tab navigation: horizontal scroll */
    .flex.gap-2.bg-white.rounded-xl.p-2 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
    }

    .flex.gap-2.bg-white.rounded-xl.p-2 button {
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Tables: horizontal scroll */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    /* Stat cards */
    .stat-card {
        padding: 12px !important;
    }

    /* Filter containers: stack vertically */
    .filter-container {
        flex-direction: column;
    }

    /* Charts: reduce height */
    .recharts-responsive-container {
        height: 200px !important;
    }

    /* Modal: fullscreen on mobile */
    .modal-overlay > div {
        margin: 8px;
        max-height: calc(100vh - 16px);
        border-radius: 16px;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .grid-cols-2, .grid-cols-3, .grid-cols-4, .grid-cols-5 {
        grid-template-columns: 1fr !important;
    }

    .mobile-nav-item {
        min-width: 48px;
        font-size: 9px;
        padding: 4px 6px;
    }
}

/* === SUPERA CARD SHADOW (brand orange) === */
/*
 * Sobrepoe Tailwind shadow-sm/shadow em cards brancos arredondados para
 * usar a sombra laranja brand (#F37021) em vez do cinza padrao. Aplica
 * automaticamente a qualquer container com:
 *   bg-white + rounded-{lg,xl,2xl} + shadow{-sm,/} (so estes combos)
 * Padrao adotado em 2026-05-15. Documentado em MANUAL.md.
 */
.bg-white.rounded-lg.shadow-sm,
.bg-white.rounded-xl.shadow-sm,
.bg-white.rounded-2xl.shadow-sm,
.bg-white.rounded-lg.shadow,
.bg-white.rounded-xl.shadow,
.bg-white.rounded-2xl.shadow {
    box-shadow:
        0 4px 12px -2px rgba(243, 112, 33, 0.16),
        0 2px 4px -1px rgba(243, 112, 33, 0.10) !important;
}


/* === SECTOR FILTER COLORS (2026-05-19) === */
/*
 * Utility classes complementares ao vendor/tailwind.min.css. Cobre as
 * cores usadas em SECTOR_COLOR_CLASSES e INSTANCE_COLORS de
 * ComunicacaoTab.js para o filtro de contas do WhatsApp Inbox.
 * Mantido aqui porque o vendor/tailwind.min.css e prebuild estatico
 * (sem JIT). Atualizar tambem MANUAL.md em "Sector Filter Colors".
 */

/* slate */
.bg-slate-200 { background-color: rgb(226 232 240) !important; }
.bg-slate-300 { background-color: rgb(203 213 225) !important; }
.text-slate-800 { color: rgb(30 41 59) !important; }
.hover\:bg-slate-300:hover { background-color: rgb(203 213 225) !important; }

/* rose */
.bg-rose-600 { background-color: rgb(225 29 72) !important; }
.hover\:bg-rose-100:hover { background-color: rgb(255 228 230) !important; }

/* yellow */
.bg-yellow-200 { background-color: rgb(254 240 138) !important; }
.hover\:bg-yellow-200:hover { background-color: rgb(254 240 138) !important; }

/* sky */
.bg-sky-50 { background-color: rgb(240 249 255) !important; }
.bg-sky-100 { background-color: rgb(224 242 254) !important; }
.bg-sky-500 { background-color: rgb(14 165 233) !important; }
.text-sky-700 { color: rgb(3 105 161) !important; }
.hover\:bg-sky-100:hover { background-color: rgb(224 242 254) !important; }

/* indigo */
.bg-indigo-600 { background-color: rgb(79 70 229) !important; }
.bg-indigo-700 { background-color: rgb(67 56 202) !important; }
.hover\:bg-indigo-100:hover { background-color: rgb(224 231 255) !important; }


/* ==================== DARK MODE (2026-05-28) ==================== */
/*
 * Tema escuro opcional. Seletor na Sidebar (Claro / Escuro / Sistema, padrao
 * Sistema); logica em window.SuperaGlia.theme (index.html) que adiciona a
 * classe `dark` no <html>. Como vendor/tailwind.min.css e prebuild estatico
 * (sem variant dark:), as utilities light usadas no app sao remapeadas aqui
 * sob html.dark. text-white / bg-black NAO sao tocados (sidebar e contextos
 * ja escuros). Acento laranja preservado. Documentar em MANUAL.md.
 */
html.dark {
    --d-bg:        #0f1115;  /* fundo da pagina */
    --d-surface:   #1b1e24;  /* cards (bg-white) */
    --d-surface-2: #23272f;  /* bg-gray-100 / hover */
    --d-surface-3: #2c313b;  /* bg-gray-200 */
    --d-panel:     #16191f;  /* bg-gray-50 */
    --d-border:    #2c313b;
    --d-border-2:  #353b46;
    --d-text:      #e8eaed;
    --d-text-soft: #c3c8d0;
    --d-text-mut:  #9aa3b0;
    --d-text-dim:  #7c8595;
    color-scheme: dark;
}

html.dark body { background-color: var(--d-bg); color: var(--d-text); }

/* Superficies */
html.dark .bg-white { background-color: var(--d-surface) !important; }
html.dark .bg-gray-50 { background-color: var(--d-panel) !important; }
html.dark .bg-gray-100 { background-color: var(--d-surface-2) !important; }
html.dark .bg-gray-200 { background-color: var(--d-surface-3) !important; }
html.dark .bg-gray-300 { background-color: #3a414d !important; }

/* Hover de superficie */
html.dark .hover\:bg-white:hover { background-color: var(--d-surface-2) !important; }
html.dark .hover\:bg-gray-50:hover { background-color: var(--d-surface-2) !important; }
html.dark .hover\:bg-gray-100:hover { background-color: var(--d-surface-3) !important; }
html.dark .hover\:bg-gray-200:hover { background-color: #3a414d !important; }

/* Texto */
html.dark .text-gray-900 { color: var(--d-text) !important; }
html.dark .text-gray-800 { color: var(--d-text) !important; }
html.dark .text-gray-700 { color: var(--d-text-soft) !important; }
html.dark .text-gray-600 { color: var(--d-text-soft) !important; }
html.dark .text-gray-500 { color: var(--d-text-mut) !important; }
html.dark .text-gray-400 { color: var(--d-text-dim) !important; }
html.dark .text-gray-300 { color: var(--d-text-dim) !important; }

/* Bordas / divisores */
html.dark .border-gray-50 { border-color: var(--d-border) !important; }
html.dark .border-gray-100 { border-color: var(--d-border) !important; }
html.dark .border-gray-200 { border-color: var(--d-border) !important; }
html.dark .border-gray-300 { border-color: var(--d-border-2) !important; }
html.dark .divide-gray-50 > :not([hidden]) ~ :not([hidden]),
html.dark .divide-gray-100 > :not([hidden]) ~ :not([hidden]) { border-color: var(--d-border) !important; }

/* Inputs / selects / textareas sem classe de cor explicita */
html.dark input, html.dark select, html.dark textarea {
    background-color: var(--d-surface-2);
    color: var(--d-text);
    border-color: var(--d-border-2);
}
html.dark input::placeholder, html.dark textarea::placeholder { color: var(--d-text-dim); }
html.dark .placeholder-gray-400::placeholder { color: var(--d-text-dim) !important; }

/* Sombra brand mais sutil no escuro (sobrepoe o glow laranja dos cards) */
html.dark .bg-white.rounded-lg.shadow-sm,
html.dark .bg-white.rounded-xl.shadow-sm,
html.dark .bg-white.rounded-2xl.shadow-sm,
html.dark .bg-white.rounded-lg.shadow,
html.dark .bg-white.rounded-xl.shadow,
html.dark .bg-white.rounded-2xl.shadow {
    box-shadow: 0 1px 3px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.30) !important;
}

/* Scrollbar */
html.dark ::-webkit-scrollbar-track { background: #16191f; }
html.dark ::-webkit-scrollbar-thumb { background: #3a414d; }
html.dark ::-webkit-scrollbar-thumb:hover { background: #4a525f; }

/* ===== Tons coloridos no modo escuro (2026-05-29) =====
 * Remapeia tints Tailwind (bg-*-50/100), texto (text-*-600/700/800) e
 * bordas (border-*-200/300) para fundo escuro tingido + texto/borda claros,
 * preservando o hue. Corrige faixas de sala na Grade, badges de perfil e status.
 * Acentos solidos (bg-*-500/600) sao preservados de proposito. */
html.dark .bg-orange-50 { background-color: rgba(249,115,22,0.10) !important; }
html.dark .bg-orange-100 { background-color: rgba(249,115,22,0.18) !important; }
html.dark .hover\:bg-orange-50:hover { background-color: rgba(249,115,22,0.16) !important; }
html.dark .hover\:bg-orange-100:hover { background-color: rgba(249,115,22,0.24) !important; }
html.dark .text-orange-600, html.dark .text-orange-700, html.dark .text-orange-800 { color: #fdba74 !important; }
html.dark .border-orange-200, html.dark .border-orange-300 { border-color: rgba(249,115,22,0.40) !important; }
html.dark .bg-amber-50 { background-color: rgba(245,158,11,0.10) !important; }
html.dark .bg-amber-100 { background-color: rgba(245,158,11,0.18) !important; }
html.dark .hover\:bg-amber-50:hover { background-color: rgba(245,158,11,0.16) !important; }
html.dark .hover\:bg-amber-100:hover { background-color: rgba(245,158,11,0.24) !important; }
html.dark .text-amber-600, html.dark .text-amber-700, html.dark .text-amber-800 { color: #fcd34d !important; }
html.dark .border-amber-200, html.dark .border-amber-300 { border-color: rgba(245,158,11,0.40) !important; }
html.dark .bg-yellow-50 { background-color: rgba(234,179,8,0.10) !important; }
html.dark .bg-yellow-100 { background-color: rgba(234,179,8,0.18) !important; }
html.dark .hover\:bg-yellow-50:hover { background-color: rgba(234,179,8,0.16) !important; }
html.dark .hover\:bg-yellow-100:hover { background-color: rgba(234,179,8,0.24) !important; }
html.dark .text-yellow-600, html.dark .text-yellow-700, html.dark .text-yellow-800 { color: #fde047 !important; }
html.dark .border-yellow-200, html.dark .border-yellow-300 { border-color: rgba(234,179,8,0.40) !important; }
html.dark .bg-red-50 { background-color: rgba(239,68,68,0.10) !important; }
html.dark .bg-red-100 { background-color: rgba(239,68,68,0.18) !important; }
html.dark .hover\:bg-red-50:hover { background-color: rgba(239,68,68,0.16) !important; }
html.dark .hover\:bg-red-100:hover { background-color: rgba(239,68,68,0.24) !important; }
html.dark .text-red-600, html.dark .text-red-700, html.dark .text-red-800 { color: #fca5a5 !important; }
html.dark .border-red-200, html.dark .border-red-300 { border-color: rgba(239,68,68,0.40) !important; }
html.dark .bg-rose-50 { background-color: rgba(244,63,94,0.10) !important; }
html.dark .bg-rose-100 { background-color: rgba(244,63,94,0.18) !important; }
html.dark .hover\:bg-rose-50:hover { background-color: rgba(244,63,94,0.16) !important; }
html.dark .hover\:bg-rose-100:hover { background-color: rgba(244,63,94,0.24) !important; }
html.dark .text-rose-600, html.dark .text-rose-700, html.dark .text-rose-800 { color: #fda4af !important; }
html.dark .border-rose-200, html.dark .border-rose-300 { border-color: rgba(244,63,94,0.40) !important; }
html.dark .bg-pink-50 { background-color: rgba(236,72,153,0.10) !important; }
html.dark .bg-pink-100 { background-color: rgba(236,72,153,0.18) !important; }
html.dark .hover\:bg-pink-50:hover { background-color: rgba(236,72,153,0.16) !important; }
html.dark .hover\:bg-pink-100:hover { background-color: rgba(236,72,153,0.24) !important; }
html.dark .text-pink-600, html.dark .text-pink-700, html.dark .text-pink-800 { color: #f9a8d4 !important; }
html.dark .border-pink-200, html.dark .border-pink-300 { border-color: rgba(236,72,153,0.40) !important; }
html.dark .bg-purple-50 { background-color: rgba(168,85,247,0.10) !important; }
html.dark .bg-purple-100 { background-color: rgba(168,85,247,0.18) !important; }
html.dark .hover\:bg-purple-50:hover { background-color: rgba(168,85,247,0.16) !important; }
html.dark .hover\:bg-purple-100:hover { background-color: rgba(168,85,247,0.24) !important; }
html.dark .text-purple-600, html.dark .text-purple-700, html.dark .text-purple-800 { color: #d8b4fe !important; }
html.dark .border-purple-200, html.dark .border-purple-300 { border-color: rgba(168,85,247,0.40) !important; }
html.dark .bg-violet-50 { background-color: rgba(139,92,246,0.10) !important; }
html.dark .bg-violet-100 { background-color: rgba(139,92,246,0.18) !important; }
html.dark .hover\:bg-violet-50:hover { background-color: rgba(139,92,246,0.16) !important; }
html.dark .hover\:bg-violet-100:hover { background-color: rgba(139,92,246,0.24) !important; }
html.dark .text-violet-600, html.dark .text-violet-700, html.dark .text-violet-800 { color: #c4b5fd !important; }
html.dark .border-violet-200, html.dark .border-violet-300 { border-color: rgba(139,92,246,0.40) !important; }
html.dark .bg-indigo-50 { background-color: rgba(99,102,241,0.10) !important; }
html.dark .bg-indigo-100 { background-color: rgba(99,102,241,0.18) !important; }
html.dark .hover\:bg-indigo-50:hover { background-color: rgba(99,102,241,0.16) !important; }
html.dark .hover\:bg-indigo-100:hover { background-color: rgba(99,102,241,0.24) !important; }
html.dark .text-indigo-600, html.dark .text-indigo-700, html.dark .text-indigo-800 { color: #a5b4fc !important; }
html.dark .border-indigo-200, html.dark .border-indigo-300 { border-color: rgba(99,102,241,0.40) !important; }
html.dark .bg-blue-50 { background-color: rgba(59,130,246,0.10) !important; }
html.dark .bg-blue-100 { background-color: rgba(59,130,246,0.18) !important; }
html.dark .hover\:bg-blue-50:hover { background-color: rgba(59,130,246,0.16) !important; }
html.dark .hover\:bg-blue-100:hover { background-color: rgba(59,130,246,0.24) !important; }
html.dark .text-blue-600, html.dark .text-blue-700, html.dark .text-blue-800 { color: #93c5fd !important; }
html.dark .border-blue-200, html.dark .border-blue-300 { border-color: rgba(59,130,246,0.40) !important; }
html.dark .bg-sky-50 { background-color: rgba(14,165,233,0.10) !important; }
html.dark .bg-sky-100 { background-color: rgba(14,165,233,0.18) !important; }
html.dark .hover\:bg-sky-50:hover { background-color: rgba(14,165,233,0.16) !important; }
html.dark .hover\:bg-sky-100:hover { background-color: rgba(14,165,233,0.24) !important; }
html.dark .text-sky-600, html.dark .text-sky-700, html.dark .text-sky-800 { color: #7dd3fc !important; }
html.dark .border-sky-200, html.dark .border-sky-300 { border-color: rgba(14,165,233,0.40) !important; }
html.dark .bg-cyan-50 { background-color: rgba(6,182,212,0.10) !important; }
html.dark .bg-cyan-100 { background-color: rgba(6,182,212,0.18) !important; }
html.dark .hover\:bg-cyan-50:hover { background-color: rgba(6,182,212,0.16) !important; }
html.dark .hover\:bg-cyan-100:hover { background-color: rgba(6,182,212,0.24) !important; }
html.dark .text-cyan-600, html.dark .text-cyan-700, html.dark .text-cyan-800 { color: #67e8f9 !important; }
html.dark .border-cyan-200, html.dark .border-cyan-300 { border-color: rgba(6,182,212,0.40) !important; }
html.dark .bg-teal-50 { background-color: rgba(20,184,166,0.10) !important; }
html.dark .bg-teal-100 { background-color: rgba(20,184,166,0.18) !important; }
html.dark .hover\:bg-teal-50:hover { background-color: rgba(20,184,166,0.16) !important; }
html.dark .hover\:bg-teal-100:hover { background-color: rgba(20,184,166,0.24) !important; }
html.dark .text-teal-600, html.dark .text-teal-700, html.dark .text-teal-800 { color: #5eead4 !important; }
html.dark .border-teal-200, html.dark .border-teal-300 { border-color: rgba(20,184,166,0.40) !important; }
html.dark .bg-emerald-50 { background-color: rgba(16,185,129,0.10) !important; }
html.dark .bg-emerald-100 { background-color: rgba(16,185,129,0.18) !important; }
html.dark .hover\:bg-emerald-50:hover { background-color: rgba(16,185,129,0.16) !important; }
html.dark .hover\:bg-emerald-100:hover { background-color: rgba(16,185,129,0.24) !important; }
html.dark .text-emerald-600, html.dark .text-emerald-700, html.dark .text-emerald-800 { color: #6ee7b7 !important; }
html.dark .border-emerald-200, html.dark .border-emerald-300 { border-color: rgba(16,185,129,0.40) !important; }
html.dark .bg-green-50 { background-color: rgba(34,197,94,0.10) !important; }
html.dark .bg-green-100 { background-color: rgba(34,197,94,0.18) !important; }
html.dark .hover\:bg-green-50:hover { background-color: rgba(34,197,94,0.16) !important; }
html.dark .hover\:bg-green-100:hover { background-color: rgba(34,197,94,0.24) !important; }
html.dark .text-green-600, html.dark .text-green-700, html.dark .text-green-800 { color: #86efac !important; }
html.dark .border-green-200, html.dark .border-green-300 { border-color: rgba(34,197,94,0.40) !important; }
