/**
 * Estilos de la Calculadora de Calificaciones (Español)
 */

#gradesTable thead th {
    border: none;
    font-size: 0.75rem;
    color: var(--bs-secondary-color);
}

.grade-row td {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.grade-row input {
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
}

.remove-row {
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.remove-row:hover {
    opacity: 1;
}

#grade-result-val {
    line-height: 1;
}

#total-weight-badge {
    transition: all 0.3s ease;
}

#planner-hint {
    border-left: 4px solid var(--bs-primary) !important;
}

/* Ajustes Móviles */
@media (max-width: 576px) {
    #gradesTable thead {
        display: none;
    }
    
    .grade-row {
        display: block;
        border-bottom: 1px solid var(--bs-border-color-translucent);
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    
    .grade-row td {
        display: block;
        width: 100% !important;
        padding: 0.25rem 0;
    }
    
    .grade-row td:last-child {
        text-align: right;
    }
}
