
/* --- Tarjeta del estudiante --- */
.card-estudiante {
    border-radius: 12px;
    border: 1px solid #e3e3e3;
    padding: 18px;
    margin-bottom: 15px;
    background: #ffffff;
}
.estudiante-nombre {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}
.campo-etiqueta {
    font-size: 13px;
    color: #777;
    margin-bottom: 4px;
}
.campo-valor {
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 6px 10px;
    background: #f8f8f8;
    cursor: pointer;
}
.campo-valor:hover {
    background: #ececec;
}