.local_mos_studentfeedback_scale_container {
    display: flex;
    gap: 5px;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.local_mos_studentfeedback_scale_item {
    flex: 0 0 auto;
}

.local_mos_studentfeedback_scale_item input[type="radio"] {
    display: none;
}

.local_mos_studentfeedback_scale_item label {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    cursor: pointer;
    background-color: #f0f0f0;
    transition: all 0.2s;
    border-radius: 4px;
}

.local_mos_studentfeedback_scale_item input[type="radio"]:checked + label {
    border: 2px solid #333;
    transform: scale(1.1);
}

/* 6-point scale colors */
.local_mos_studentfeedback_scale_item:nth-child(1) label { background-color: #ff4d4d; } /* Red */
.local_mos_studentfeedback_scale_item:nth-child(2) label { background-color: #ff8533; }
.local_mos_studentfeedback_scale_item:nth-child(3) label { background-color: #ffbb33; }
.local_mos_studentfeedback_scale_item:nth-child(4) label { background-color: #d4e157; }
.local_mos_studentfeedback_scale_item:nth-child(5) label { background-color: #9ccc65; }
.local_mos_studentfeedback_scale_item:nth-child(6) label { background-color: #66bb6a; } /* Green */

/* Descriptions */
.scale-legend {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    justify-content: space-between;
    width: 270px; /* 6 * 45px roughly */
}

/* Teacher Profile */
.teacher-profile {
    margin-right: 15px;
    margin-bottom: 10px;
}
.teacher-profile img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
