/* =====================================================
   ILYK — Розклад сесій курсу
   themes/ilyk/css/schedule.css
   ===================================================== */

.ilyk-schedule-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =====================================================
   РЯДОК РОЗКЛАДУ
   ===================================================== */

.ilyk-schedule-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 22px;
    background: rgba(81, 105, 241, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(81, 105, 241, 0.12);
    border-radius: 12px;
    cursor: default;
    user-select: none;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.ilyk-schedule-item:hover {
    background: rgba(81, 105, 241, 0.08);
    border-color: rgba(81, 105, 241, 0.25);
    box-shadow: 0 4px 16px rgba(81, 105, 241, 0.1);
    transform: translateY(-1px);
}

body.term-training .ilyk-schedule-item {
    background: rgba(45, 110, 99, 0.04);
    border-color: rgba(45, 110, 99, 0.12);
}

body.term-training .ilyk-schedule-item:hover {
    background: rgba(45, 110, 99, 0.08);
    border-color: rgba(45, 110, 99, 0.25);
    box-shadow: 0 4px 16px rgba(45, 110, 99, 0.1);
}

/* Номер */
.ilyk-schedule-item__num {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(81, 105, 241, 0.12);
    color: #5169F1;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
}

body.term-training .ilyk-schedule-item__num {
    background: rgba(45, 110, 99, 0.12);
    color: #2D6E63;
}

.ilyk-schedule-item:hover .ilyk-schedule-item__num {
    background: #5169F1;
    color: #fff;
}

body.term-training .ilyk-schedule-item:hover .ilyk-schedule-item__num {
    background: #2D6E63;
    color: #fff;
}

/* Назва модуля */
.ilyk-schedule-item__title {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    flex: 1;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Дата — фіксована мінімальна ширина щоб іконки рівнялись */
.ilyk-schedule-item__date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    flex-shrink: 0;
    min-width: 160px; /* найдовший формат: 15.12.2026–15.01.2027 */
    white-space: nowrap;
}

.ilyk-schedule-item__date i {
    color: #5169F1;
    font-size: 13px;
}

body.term-training .ilyk-schedule-item__date i {
    color: #2D6E63;
}

/* Порожній стан */
.ilyk-schedule-empty {
    font-size: 15px;
    color: #999;
    font-style: italic;
}

/* =====================================================
   АДАПТИВ
   ===================================================== */

@media (max-width: 600px) {
    .ilyk-schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 14px 18px;
    }
}