/* =========================================================
   ESTILOS GERAIS DO PAINEL (GESTOR E ALUNO)
========================================================= */

/* Animação das abas */
.tab-content { 
    display: none; 
    animation: fadeIn 0.3s ease-in-out; 
}
.tab-content.active { 
    display: block; 
}

@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(10px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* Botão de aba ativo na sidebar */
.tab-btn.active { 
    background-color: #E53E3E; 
    color: white; 
}

/* Estilo do toggle (botão liga/desliga da Modal) */
.toggle-checkbox:checked { 
    right: 0; 
    border-color: #10B981; 
}
.toggle-checkbox:checked + .toggle-label { 
    background-color: #10B981; 
}

/* =========================================================
   ESTILOS DE IMPRESSÃO (CERTIFICADOS)
========================================================= */
@media print {
    body { 
        background: white; 
        margin: 0; 
        padding: 0; 
        -webkit-print-color-adjust: exact !important; 
        print-color-adjust: exact !important; 
    }
    .no-print { 
        display: none !important; 
    }
    .print-only { 
        display: flex !important; 
    }
    @page { 
        size: A4 landscape; 
        margin: 0mm; 
    }
    #certificado-container { 
        width: 100vw; 
        height: 100vh; 
        position: absolute; 
        top: 0; 
        left: 0; 
        background: white; 
        z-index: 9999; 
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
        padding: 40px; 
        box-sizing: border-box; 
    }
}