/* ===================================================================
   ARCHIVO: evaluar.css
   CONTIENE: Estilos exclusivos y corregidos para la página de evaluación
   =================================================================== */

body {
    background-color: #f0f2f5;
}

main.container {
    max-width: 800px;
}

.evaluation-container {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 44, 92, 0.1);
    border: none;
    overflow: hidden;
    margin-top: 2rem;
}

.evaluation-header {
    background-color: #003366;
    color: white;
    padding: 1.5rem 2rem;
}

.evaluation-header h1 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.evaluation-body {
    padding: 2rem;
}

/* --- Sistema de Estrellas Interactivo --- */
.star-rating-interactive {
    font-size: 2.5rem;
    color: #e0e0e0;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.star-rating-interactive .star {
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
    display: inline-block;
}

.star-rating-interactive .star:hover {
    transform: scale(1.2);
}

.star-rating-interactive .star.hover,
.star-rating-interactive .star.selected {
    color: #FFD700;
}

#rating-label {
    font-weight: 600;
    font-size: 1.1rem;
    color: #005BA8;
    min-height: 24px;
    transition: all 0.3s ease;
}

/* --- Sección de Comentarios --- */
.comments-section {
    margin-top: 3rem;
}

.comment-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.comment-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.comment-stars {
    color: #FFD700;
    font-size: 1.1rem;
}

.comment-body {
    color: #343a40;
    line-height: 1.6;
}