/* estilos.css */
.tabla-alumnos {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 20px;
    background-color: white;
}

.tabla-alumnos thead {
    background-color: #bb4ad1d8;
    color: rgb(255, 255, 255);
}

.tabla-alumnos th, 
.tabla-alumnos td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.tabla-alumnos tr:hover {
    background-color: #f8f9fa;
}

/* Formato para los estados */
.badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 600;
}

.activo {
    background-color: #d4edda;
    color: #155724;
}

.inactivo {
    background-color: #f8d7da;
    color: #721c24;
}