/* =========================================
   Sistema de Evaluación Docente - CSE
   ========================================= */

/* Estilos base */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Redondeo suave para interfaz moderna */
.card {
    border-radius: 12px;
}
.btn {
    border-radius: 8px;
}

/* =========================================
   Formulario Público (Validación RUT)
   ========================================= */
.valido {
    border-color: #2ecc71 !important;
    background-color: #f4fbf7;
}
.invalido {
    border-color: #e74c3c !important;
    background-color: #fdf5f4;
}

/* =========================================
   Landing Page (index.php)
   ========================================= */
.hover-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

/* =========================================
   Panel de Administración (Sidebar)
   ========================================= */
#sidebar-wrapper .list-group-item {
    transition: background-color 0.2s, color 0.2s;
}
#sidebar-wrapper .list-group-item:hover {
    background-color: #f1f3f5;
    color: #198754 !important; /* Verde institucional */
}
#sidebar-wrapper .list-group-item.active {
    background-color: #e8f5e9;
    color: #198754 !important;
    border-left: 4px solid #198754;
}