/* Estilos específicos para el paso de Validación Académica */

/* Layout principal */
.academic-summary {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

/* Resumen del estudiante */
.student-summary {
    margin-bottom: 32px;
}

.student-photo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.student-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e9ecef;
}

.student-name {
    font-size: 20px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 4px;
}

.student-id,
.student-course,
.student-period {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 2px;
}

/* Resumen del representante */
.representative-summary {
    text-align: left;
    margin: 32px auto;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    background: #f8f9fa;
    max-width: 720px;
}

.representative-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.representative-photo-wrapper {
    flex-shrink: 0;
}

.representative-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #dee2e6;
}

.representative-details {
    flex: 1;
}

.rep-field {
    font-size: 14px;
    color: #495057;
    margin-bottom: 4px;
}

.rep-field span {
    font-weight: 600;
    color: #212529;
}

/* Confirmación */
.academic-confirm {
    margin-top: 32px;
    text-align: left;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.confirm-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #212529;
    cursor: pointer;
}

.confirm-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.confirm-hint {
    margin-top: 6px;
    font-size: 12px;
    color: #6c757d;
}

/* Responsive */
@media (max-width: 768px) {
    .representative-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .representative-details {
        text-align: left;
        width: 100%;
    }
}
