/* ====== SCHEDULE TABLE STYLES ====== */

/*Таблица расписания, скролл, hover, sticky header, печать*/

.schedule-scroll-wrapper {
    max-height: 600px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

.schedule-table {
    background-color: #f8f9fa;
    font-size: 0.90rem;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

.schedule-table th {
    background-color: #033ea8;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem;
    text-align: center;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 2;
}

.schedule-table td {
    background-color: rgba(242,244,244,0.25);
    color: #292828;
    padding: 0.6rem;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.schedule-table tr:nth-child(even) {
    background-color: #c9e6f6;
}

.schedule-table tr:hover {
    background-color: #4ac1f7;
}

/* Column widths */
.schedule-table th:first-child,
.schedule-table td:first-child {
    width: 12%;
    padding-left: 6mm;
    text-align: left;
}

.schedule-table th:nth-child(2),
.schedule-table td:nth-child(2) {
    width: 18%;
    padding-left: 8mm;
    text-align: left;
}

.schedule-table th:nth-child(3),
.schedule-table td:nth-child(3) {
    width: 10%;
}

/* Print */
@media print {
    .schedule-table {
        font-size: 10px;
        table-layout: fixed;
        width: 100%;
    }
    .schedule-table th,
    .schedule-table td {
        word-wrap: break-word;
        padding: 4px;
        white-space: normal !important;
    }
}

/* ============================
Дата и время (раздельно)
============================ */

/* Общий контейнер */
.datetime-block {
    text-align: right;
    margin-bottom: 0.5rem;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-weight: bold;
}

/* Дата */
.schedule-page .date-text {
    font-size: 1.25rem;
    color: #495057;
    font-weight: 500;
}

/* Время */
.schedule-page .time-text {
    font-size: 2.50rem; /* Относительно корневого элемента (html) — размер в % (1.25rem = 125%)*/
    color: #5c5d5e;
    font-family: 'Digiface', Tahoma, sans-serif;
    font-weight: bold; /* font-style: italic; */
}
