/* Fondo modal negro */
.swal-historial {
    max-width: 420px;
    width: 95%;
    padding: 15px;
    font-family: 'Segoe UI', sans-serif;
    background-color: #111;
    color: #fff;
}

/* Info estudiante */
.card-info-estudiante h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.card-info-estudiante h3 {
    font-size: 0.95rem;
    margin: 2px 0;
    color: #ccc;
}

/* Cards historial */
.historial-card {
    background: #1c1c1c;
    margin: 8px 0;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.historial-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #ccc;
}
.historial-leccion {
    font-weight: bold;
}
.historial-fecha {
    font-style: italic;
    font-size: 0.8rem;
}
.historial-body {
    font-size: 1rem;
    margin-bottom: 5px;
}
.historial-estado {
    font-weight: bold;
}

/* Footer botón */
.historial-footer {
    text-align: right;
}
.historial-footer button {
    padding: 4px 8px;
    font-size: 0.85rem;
    border-radius: 5px;
    border: none;
    background: #2196f3;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}
.historial-footer button:hover {
    background: #1976d2;
}

/* Vacío */
.historial-vacio {
    text-align: center;
    padding: 20px 0;
    color: #888;
    font-style: italic;
}


/* Emoji flotante sobre Presente */
.emoji-flotante {
    display: inline-block;
    position: relative;
    animation: flotar 2s ease-in-out infinite alternate;
    font-size: 1.2rem;
    margin-left: 5px;
}

/* Animación de subida y bajada */
@keyframes flotar {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px) rotate(-10deg); }
    100% { transform: translateY(0px) rotate(10deg); }
}
