/* ==========================================================================
   Horario de grupos en formato de tarjetas - Centro Especializado en Lenguas
   Estilos compartidos por Matricula.aspx y HorarioGrupo.aspx.
   ========================================================================== */
.horario-section {
    margin-top: 1.5rem;
}

.horario-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.horario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.horario-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.horario-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .75rem;
}

.horario-card-dia {
    font-size: 18px;
    font-weight: 500;
    color: #222;
}

.dia-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
}

.dia-avatar-presencial {
    background: #E6F1FB;
    color: #185FA5;
}

.dia-avatar-online {
    background: #F4C0D1;
    color: #993556;
}

.horario-card-divider {
    height: 1px;
    background: #f0f0f0;
    margin: .75rem 0;
}

.horario-card-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
    margin-bottom: .5rem;
}

    .horario-card-row i {
        font-size: 16px;
        color: #888;
        flex-shrink: 0;
    }

    .horario-card-row:last-child {
        margin-bottom: 0;
    }

.aula-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.aula-online {
    background: #F4C0D1;
    color: #993556;
}

.aula-presencial {
    background: #E6F1FB;
    color: #185FA5;
}

.horario-empty {
    text-align: center;
    padding: 2rem;
    color: #888;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
}

    .horario-empty i {
        font-size: 32px;
        display: block;
        margin-bottom: .5rem;
    }

@media (max-width: 768px) {
    .horario-grid {
        grid-template-columns: 1fr;
    }
}
