/* Обработка переключателя в отметке посещаемости в templates/core/take_attendance.html */
.custom-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.custom-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #dc3545; /* Красный для "Нет" */
    transition: .4s;
    border-radius: 15px;
}

.custom-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    transition: .4s;
    border-radius: 45%;
}

input:checked + .custom-toggle-slider {
    background-color: #28a745; /* Зеленый цвет для "Да" */
}

input:checked + .custom-toggle-slider:before {
    transform: translateX(24px);
}
/* Конец обработки переключателя */




/* Упрощенные стили для обрезки названий уроков */
.lesson-name-container {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.lesson-name {
    display: inline-block;
    width: 95%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    max-width: 60ch;
}