/* =========================================
   1. VARIÁVEIS E RESET (MODERNIZADO)
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --azul-primario: #1e293b;    /* Um azul marinho mais moderno/Slate */
    --azul-destaque: #3b82f6;    /* Azul vibrante moderno */
    --azul-hover: #2563eb;
    --branco: #ffffff;
    --cinza-fundo: #f8fafc;      /* Fundo mais limpo e claro */
    --cinza-texto: #334155;
    --cinza-claro: #e2e8f0;
    --erro: #ef4444;
    --sucesso: #10b981;
    --aviso: #f59e0b;
    --sombra-suave: 0 4px 20px rgba(0, 0, 0, 0.04);
    --sombra-media: 0 10px 25px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--cinza-fundo);
    color: var(--cinza-texto);
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
    line-height: 1.6;
}

.main-content {
    flex: 1;
    width: 100%;
    padding-bottom: 50px;
}

/* =========================================
   2. HEADER E FOOTER (COM EFEITO GLASS)
   ========================================= */
.main-header {
    background-color: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(10px);
    color: white;
    position: relative; /* <--- Novo valor */
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header-container {
    width: 100%; 
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area { display: flex; align-items: center; gap: 10px; }
.logo-area h1 { font-size: 1.3rem; font-weight: 800; letter-spacing: 0.5px; }
.logo-icon { font-size: 1.5rem; }

/* Navegação */
.main-nav ul { list-style: none; display: flex; gap: 20px; align-items: center; }
.main-nav a { 
    color: #cbd5e1; 
    text-decoration: none; 
    font-size: 0.95rem;
    font-weight: 500; 
    transition: all 0.2s;
    padding: 8px 12px;
    border-radius: 6px;
}
.main-nav a:hover { color: white; background-color: rgba(255,255,255,0.05); }

.btn-destaque-nav {
    background-color: rgba(59, 130, 246, 0.15) !important; 
    color: #60a5fa !important;
    border: 1px solid rgba(59, 130, 246, 0.3);
}
.btn-destaque-nav:hover {
    background-color: var(--azul-destaque) !important; 
    color: white !important;
    border-color: var(--azul-destaque);
}

.user-profile {
    border-left: 1px solid rgba(255,255,255,0.1); 
    padding-left: 20px; margin-left: 10px;
    display: flex; align-items: center; gap: 10px;
}
.user-profile span { font-weight: 600; font-size: 0.95rem; }
.btn-sair { color: #f87171 !important; }
.btn-sair:hover { background-color: rgba(239, 68, 68, 0.1) !important; color: #fca5a5 !important; }

.menu-mobile-icon { display: none; font-size: 1.8rem; cursor: pointer; color: white; }

.main-footer { background-color: #0f172a; color: #94a3b8; text-align: center; padding: 25px; width: 100%; margin-top: auto; font-size: 0.9rem; }

/* =========================================
   3. LOGIN E CADASTRO (SLEEK UI)
   ========================================= */
.centralizar-tela { display: flex; justify-content: center; align-items: center; min-height: 85vh; padding: 20px; }

.login-container {
    background-color: var(--branco); 
    padding: 3rem 2.5rem; 
    border-radius: 16px;
    box-shadow: var(--sombra-media); 
    width: 100%; max-width: 420px;
    border-top: 6px solid var(--azul-destaque);
}

h2 { color: var(--azul-primario); text-align: center; margin-bottom: 1.8rem; font-weight: 800; font-size: 1.5rem; }

.input-group { margin-bottom: 1.2rem; }
.input-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.9rem; color: #475569; }
.input-group input, .input-group select {
    width: 100%; padding: 0.85rem 1rem; 
    border: 1px solid var(--cinza-claro); 
    border-radius: 8px; font-size: 1rem; 
    background-color: #f8fafc;
    color: #1e293b;
    transition: all 0.2s ease;
}
.input-group input:focus, .input-group select:focus { 
    outline: none; 
    border-color: var(--azul-destaque); 
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15); 
}

.btn-login {
    width: 100%; padding: 0.85rem; 
    background-color: var(--azul-destaque); color: white; 
    border: none; border-radius: 8px; font-size: 1rem;
    font-weight: 700; cursor: pointer; 
    transition: all 0.2s; box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}
.btn-login:hover { background-color: var(--azul-hover); transform: translateY(-1px); box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4); }

.msg-erro { color: #b91c1c; background: #fef2f2; padding: 12px; border-radius: 8px; margin-bottom: 15px; text-align: center; font-size: 0.9rem; border: 1px solid #fecaca; }
.msg-sucesso { color: #047857; background: #ecfdf5; padding: 12px; border-radius: 8px; margin-bottom: 15px; text-align: center; font-size: 0.9rem; border: 1px solid #a7f3d0; }

/* =========================================
   4. FORMULÁRIO DE COLETA (PRESERVADO)
   ========================================= */
.container-coleta { width: 100%; max-width: 1200px; margin: 30px auto; background: var(--branco); padding: 30px; border-radius: 12px; box-shadow: var(--sombra-suave); border: 1px solid var(--cinza-claro); }
.progresso-container { height: 10px; background: #eee; border-radius: 5px; margin-bottom: 30px; overflow: hidden; }
.progresso-barra { height: 100%; background: var(--azul-destaque); transition: width 0.5s ease; }
.pergunta-bloco { margin-bottom: 25px; border: 1px solid var(--cinza-claro); border-radius: 8px; overflow: hidden; }
.pergunta-titulo { background: #f8fafc; padding: 15px; text-align: center; font-weight: 700; text-transform: uppercase; font-size: 1.05rem; border-bottom: 1px solid var(--cinza-claro); color: var(--azul-primario); }
.desc-small { font-size: 14px; padding: 15px 20px; color: #64748b; }
.opcoes-container { display: flex; gap: 10px; width: 100%; padding: 10px; background: #fff; }
.opcao-item { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; padding: 15px; border-radius: 8px; cursor: pointer; font-weight: 700; color: white; text-transform: uppercase; font-size: 0.9rem; transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); opacity: 0.7; box-shadow: 0 2px 4px rgba(0,0,0,0.1); border: 2px solid transparent; margin: 0; }
.opcao-item input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.opcao-item:has(input:checked) { opacity: 1; transform: scale(1.02); box-shadow: 0 5px 10px rgba(0,0,0,0.2); border-color: white; outline: 2px solid #555; z-index: 10; filter: brightness(1.1); background: var(--sucesso)!important; }
.opcao-item:hover { opacity: 1; transform: translateY(-2px); }

.bg-verde { background-color: var(--sucesso); }
.bg-amarelo { background-color: var(--aviso); }
.bg-vermelho { background-color: var(--erro); }
.bg-cinza { background-color: #94a3b8; }
.bg-azul-destaque { background-color: var(--azul-destaque); }

.area-botoes { display: flex; gap: 15px; margin-top: 30px; }
.btn-navegacao { flex: 1; padding: 15px; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; text-transform: uppercase; color: white; transition: all 0.2s; }
.btn-proximo { background-color: var(--azul-destaque); }
.btn-proximo:hover { background-color: var(--azul-hover); transform: translateY(-2px); }
.btn-voltar { background-color: #94a3b8; }
.btn-voltar:hover { background-color: #64748b; transform: translateY(-2px); }

/* RRE */
.header-rre { background-color: var(--erro); color: white; padding: 30px; text-align: center; margin: -30px -30px 30px -30px; border-radius: 8px 8px 0 0; }
.escala-10-container { display: flex; width: 100%; gap: 5px; margin-bottom: 5px; }
.escala-10-item { flex: 1; position: relative; cursor: pointer; }
.escala-10-item input { position: absolute; opacity: 0; }
.escala-btn { display: flex; align-items: center; justify-content: center; height: 50px; color: white; font-weight: bold; border-radius: 6px; font-size: 1.1rem; transition: all 0.2s; }
.escala-10-item input:checked + .escala-btn { transform: scale(1.1); box-shadow: 0 5px 15px rgba(0,0,0,0.3); z-index: 10; filter: brightness(1.1); }
.psr-v, .pse-v { background-color: var(--erro); }
.psr-a, .pse-a { background-color: var(--aviso); }
.psr-g, .pse-g { background-color: var(--sucesso); }
.legendas-escala { display: flex; justify-content: space-between; font-size: 0.75rem; color: #64748b; font-weight: 700; text-transform: uppercase; margin-top: 8px; }

/* =========================================
   5. RELATÓRIOS (PRESERVADO COM MELHORIA DE BORDAS)
   ========================================= */
.report-container { width: 98%; max-width: 100%; margin: 30px auto; padding: 0 30px; }
.header-paciente { background: var(--azul-primario); color: white; text-align: center; padding: 40px; border-radius: 12px; margin-bottom: 30px; box-shadow: var(--sombra-suave); }
.header-paciente h1 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.5px; }
.grid-resultados { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1px; background-color: var(--cinza-claro); border: 1px solid var(--cinza-claro); border-radius: 8px; overflow: hidden; }
.grid-item { background: white; padding: 20px; font-size: 0.95rem; display: flex; justify-content: space-between; align-items: center; }
.badge-status { padding: 6px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.5px; }

/* Escala no Relatório */
.escala-container { display: flex; gap: 4px; margin-top: 5px; margin-bottom: 15px; }
.escala-display-item { flex: 1; height: 40px; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; border-radius: 4px; font-size: 0.9rem; }
.escala-ativo { transform: scale(1.15); border: 2px solid #1e293b; box-shadow: 0 4px 8px rgba(0,0,0,0.2); z-index: 2; opacity: 1; filter: brightness(1.1); }
.escala-inativo { opacity: 0.45; transform: scale(0.9); }

.conduta-container { background-color: #fdf8f6; border: 2px dashed #fdba74; border-radius: 12px; padding: 30px; margin-top: 20px; }
.resultado-conduta { background: #fff; border: 1px solid #fed7aa; padding: 25px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }

.btn-whatsapp-cta { display: inline-flex; justify-content: center; align-items: center; gap: 10px; background-color: #25D366; color: white; font-weight: 800; text-transform: uppercase; text-decoration: none; padding: 15px 35px; border-radius: 50px; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); transition: all 0.3s; font-size: 1rem; border: none; }
.btn-whatsapp-cta:hover { background-color: #128C7E; transform: translateY(-3px); box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4); }
.area-botoes-print { text-align: center; margin: 40px 0; display: flex; justify-content: center; gap: 15px; }

/* =========================================
   6. DASHBOARDS E WIDGETS (UI MODERNA)
   ========================================= */
.dashboard-container { max-width: 1300px; margin: 40px auto; padding: 0 20px; }

/* Grid Novo (Usado no Admin e Fisio) */
.dashboard-grid-2col-uneven { display: grid; grid-template-columns: 2fr 1fr; gap: 25px; align-items: start; margin-bottom: 30px; }

.card-relatorio { 
    background: var(--branco); 
    border-radius: 12px; 
    box-shadow: var(--sombra-suave); 
    margin-bottom: 25px; 
    border: 1px solid var(--cinza-claro); 
    overflow: hidden; 
}
.card-header { 
    background: transparent; 
    padding: 20px 25px; 
    border-bottom: 1px solid var(--cinza-claro); 
    font-weight: 800; 
    color: var(--azul-primario); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 1.1rem; 
}
.card-body { padding: 25px; }
.card-body.no-padding { padding: 0; }

/* Cards de Estatísticas (Stats Grid) */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; margin-bottom: 35px; }
.stat-card {
    background: var(--branco); padding: 25px; border-radius: 16px;
    box-shadow: var(--sombra-suave); border: 1px solid var(--cinza-claro);
    position: relative; overflow: hidden; transition: all 0.3s ease;
    display: flex; flex-direction: column; justify-content: center; height: 100%;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--sombra-media); }
.stat-card::before { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 6px; border-radius: 16px 0 0 16px; background-color: var(--azul-primario); }
.stat-card.card-azul::before { background-color: var(--azul-destaque); }
.stat-card.card-verde::before { background-color: var(--sucesso); }
.stat-card.card-vermelho::before { background-color: var(--erro); }
.stat-card.card-amarelo::before { background-color: var(--aviso); }
.stat-card.card-roxo::before { background-color: #8b5cf6; }

.stat-card h3 { font-size: 0.85rem; color: #64748b; font-weight: 700; margin-bottom: 8px; letter-spacing: 0.5px; }
.stat-card .value { font-size: 2.5rem; font-weight: 800; color: var(--azul-primario); line-height: 1; margin-bottom: 5px; }
.stat-card .unit-text { font-size: 1.2rem; color: #94a3b8; font-weight: 600; }
.stat-card .subtext { font-size: 0.9rem; color: #64748b; margin-top: auto; }
.stat-icon-bg { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 3.5rem; opacity: 0.05; pointer-events: none; }

/* Link Disfarçado no Stat Card */
.link-destaque-verde { color: var(--sucesso); text-decoration: none; font-weight: 700; font-size: 0.9rem; margin-top: 15px; display: inline-block; transition: opacity 0.2s; }
.link-destaque-verde:hover { opacity: 0.7; }
.link-destaque-azul { color: var(--azul-destaque); text-decoration: none; font-weight: 700; transition: opacity 0.2s; }
.link-destaque-azul:hover { opacity: 0.7; }

/* =========================================
   7. LISTAS E TABELAS MODERNAS
   ========================================= */
.section-title { color: var(--azul-primario); font-size: 1.2rem; font-weight: 800; margin-bottom: 15px; border-bottom: 2px solid var(--cinza-claro); padding-bottom: 10px; }
.toolbar-pacientes { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 25px; }
.welcome-section h2 { text-align: left; margin: 0; font-size: 1.8rem; }

.search-box { position: relative; flex: 1; max-width: 400px; }
.search-box input { width: 100%; padding: 12px 15px 12px 45px; border: 1px solid var(--cinza-claro); border-radius: 50px; font-size: 0.95rem; background: #fff; transition: all 0.2s; }
.search-box input:focus { outline: none; border-color: var(--azul-destaque); box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15); }
.search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: #94a3b8; font-size: 1.1rem; }

/* Tabela Dash */
.table-container { background: white; border-radius: 12px; box-shadow: var(--sombra-suave); overflow-x: auto; border: 1px solid var(--cinza-claro); }
.dash-table { width: 100%; border-collapse: collapse; border-spacing: 0; text-align: left; }
.dash-table th { background: #f8fafc; color: #475569; font-weight: 700; padding: 15px 20px; border-bottom: 1px solid var(--cinza-claro); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.5px; white-space: nowrap; }
.dash-table td { padding: 18px 20px; border-bottom: 1px solid #f1f5f9; color: #334155; vertical-align: middle; transition: background 0.2s; }
.dash-table tr:hover td { background-color: #f8fafc; }
.dash-table tr:last-child td { border-bottom: none; }

.sub-time { color: #94a3b8; font-size: 0.85rem; margin-left: 8px; }
.protocolo-wrapper { display: flex; flex-direction: column; }
.protocolo-numero { color: #64748b; font-size: 0.9rem; font-weight: 500; background: #f1f5f9; padding: 4px 10px; border-radius: 6px; display: inline-block; width: fit-content; }

.btn-action { display: inline-flex; align-items: center; justify-content: center; padding: 8px 14px; border-radius: 6px; text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: all 0.2s; white-space: nowrap; }
.btn-historico { background-color: #f1f5f9; color: #475569; border: 1px solid #e2e8f0; }
.btn-historico:hover { background-color: #e2e8f0; color: #1e293b; }
.btn-coleta { background-color: rgba(59, 130, 246, 0.1); color: var(--azul-destaque); border: 1px solid rgba(59, 130, 246, 0.2); }
.btn-coleta:hover { background-color: var(--azul-destaque); color: white; }

.text-right { text-align: right !important; }
.text-center { text-align: center !important; }
.text-uppercase { text-transform: uppercase; }
.text-muted { color: #64748b !important; }

/* Empty States e Feeds (Admin) */
.empty-box { text-align: center; padding: 50px 20px !important; }
.empty-icon { font-size: 3rem; opacity: 0.3; margin-bottom: 10px; }
.link-iniciar { display: inline-block; background: var(--azul-destaque); color: white; padding: 10px 20px; border-radius: 6px; text-decoration: none; font-weight: 600; margin-top: 15px; transition: 0.2s; }
.link-iniciar:hover { background: var(--azul-hover); }

.feed-list { list-style: none; margin: 0; padding: 0; }
.feed-item { padding: 18px 25px; border-bottom: 1px solid var(--cinza-claro); display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; }
.feed-item:hover { background: #f8fafc; }
.feed-item:last-child { border-bottom: none; }
.feed-title { display: block; color: var(--azul-primario); font-size: 0.95rem; }
.feed-subtitle { font-size: 0.8rem; color: #64748b; }
.feed-date { font-size: 0.8rem; color: #94a3b8; display: block; margin-bottom: 4px; }

/* =========================================
   8. UTILITÁRIOS E COMPONENTES GERAIS
   ========================================= */
.btn-add-novo { background-color: var(--azul-primario); color: white; padding: 12px 25px; border-radius: 50px; text-decoration: none; font-weight: 700; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-add-novo:hover { transform: translateY(-2px); background-color: #0f172a; box-shadow: 0 6px 15px rgba(0,0,0,0.15); }
.btn-secundario { background-color: #cbd5e1; color: #334155; padding: 10px 20px; border: none; border-radius: 6px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s; }
.btn-secundario:hover { background-color: #94a3b8; color: white; }

/* Tabela de Referência Genérica (Admin/Configs) */
.tabela-referencia { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.tabela-referencia th, .tabela-referencia td { border: 1px solid var(--cinza-claro); padding: 12px 15px; text-align: left; }
.tabela-referencia th { background-color: #f8fafc; text-align: center; font-weight: 700; color: #475569; }

/* Container para Gráficos */
.chart-wrapper-large { position: relative; height: 350px; width: 100%; }

/* Link Copy Box */
.link-alert-container { background: white; border-left: 6px solid var(--azul-destaque); border-radius: 12px; box-shadow: var(--sombra-suave); padding: 25px; margin-bottom: 30px; }
.link-input-group { display: flex; gap: 10px; margin-top: 15px; background: #f8fafc; padding: 8px; border-radius: 8px; border: 1px solid var(--cinza-claro); }
.link-input-group input { flex: 1; border: none; background: transparent; font-family: 'Courier New', monospace; font-size: 1rem; color: #334155; outline: none; padding-left: 10px; }
.btn-copy { background: var(--azul-primario); color: white; border: none; padding: 10px 25px; border-radius: 6px; font-weight: 700; cursor: pointer; transition: all 0.2s ease; display: flex; align-items: center; gap: 8px; }
.btn-copy:hover { background: var(--azul-destaque); }

/* =========================================
   9. RESPONSIVIDADE E IMPRESSÃO
   ========================================= */
@media (max-width: 992px) {
    .dashboard-grid-2col-uneven { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .menu-mobile-icon { display: block; }
    .header-container { padding: 0 20px; height: 70px; }
    
    .main-nav { position: absolute; top: 70px; left: 0; width: 100%; background-color: rgba(30, 41, 59, 0.98); backdrop-filter: blur(10px); flex-direction: column; display: none; border-top: 1px solid rgba(255,255,255,0.05); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
    .main-nav.active { display: flex; }
    .main-nav ul { flex-direction: column; width: 100%; gap: 0; padding: 10px 0; }
    .main-nav li { width: 100%; text-align: center; }
    .main-nav a { display: block; padding: 15px; border-radius: 0; }
    .user-profile { border-left: none; flex-direction: column; gap: 10px; padding: 20px; background: rgba(0,0,0,0.2); margin: 0; }
    
    .report-container { width: 100%; padding: 0 10px; }
    .grid-resultados { grid-template-columns: 1fr; } 

    .toolbar-pacientes { flex-direction: column; align-items: stretch; }
    .search-box { max-width: 100%; }
    .opcoes-container { flex-direction: column; gap: 8px; }
    .opcao-item { width: 100%; margin: 0; }
}

@media print {
    /* 1. Força o papel para o modo Paisagem */
    @page { 
        size: A4 landscape; 
        margin: 10mm; 
    }

    /* 2. Ajustes de Cores e Reset */
    body, html { 
        background-color: white !important; 
        -webkit-print-color-adjust: exact !important; 
        print-color-adjust: exact !important; 
    }

    /* 3. Esconde o que não é relatório */
    .main-header, .main-footer, .toolbar-pacientes, .filter-form, button, .btn-secundario { 
        display: none !important; 
    }

    /* 4. Layout dos Gráficos em Paisagem */
    /* Em modo paisagem, 2 colunas ficam perfeitas e bem largas */
    .stats-grid-2col {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
        width: 100% !important;
    }

    /* 5. Faz o card do FCR ocupar a linha inteira no final da página */
    #fcrContainer {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }

    /* 6. Mantém a integridade dos cards (não quebra no meio da página) */
    .stat-card, .card-relatorio { 
        page-break-inside: avoid !important; 
        break-inside: avoid !important;
        margin-bottom: 20px !important; 
        border: 1px solid #eee !important;
        box-shadow: none !important;
        padding: 10px !important;
    }

    /* 7. Ajuste de altura do gráfico para o papel */
    .chart-wrapper {
        height: 250px !important;
    }

    /* 8. Força visibilidade das badges e cores */
    .badge-status, .bg-verde, .bg-amarelo, .bg-vermelho {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color: white !important;
    }
}