/* Стили для кастомного загрузчика файлов */
.file-uploader {
    margin-top: 10px;
}

.file-list {
    margin-top: 10px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    margin: 5px 0;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.file-item span {
    font-size: 14px;
    color: #333;
}

.file-item button {
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 12px;
}

.file-item button:hover {
    background: #ff3742;
}


/* Выравнивание полей тестов и экзаменов */
[data-input-lid="test_date"],
[data-input-lid="exam_date"] {
    width: 100% !important;
}

[data-input-lid="test_time"],
[data-input-lid="exam_time"] {
    width: 100% !important;
}

/* Обеспечиваем одинаковую ширину для всех полей времени */
.t-input-group_tm .t-input-block {
    width: 100% !important;
}

.t-input.t-inputtime {
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Принудительное скрытие дедлайна для репетитора */
[data-input-lid="deadline_date"] {
    display: none !important;
}


