.timeline-item {
    grid-template-columns: 120px 18px minmax(0, 1fr);
    column-gap: 14px;
}

.timeline-item time {
    white-space: nowrap;
}

@media (max-width: 420px) {
    .timeline-item {
        grid-template-columns: 105px 14px minmax(0, 1fr);
        column-gap: 9px;
    }

    .timeline-item time {
        font-size: 12px;
    }
}

.rundown-table-wrap {
    overflow-x: auto;
}

.rundown-table {
    width: 100%;
    border-collapse: collapse;
}

.rundown-table th,
.rundown-table td {
    padding: 15px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.rundown-table th {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.rundown-table tbody tr:last-child td {
    border-bottom: 0;
}

.rundown-time {
    width: 145px;
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.rundown-event {
    font-weight: 600;
}

.rundown-session-status {
    width: 105px;
    text-align: center !important;
}

.rundown-notes {
    width: 72px;
    text-align: center !important;
}

.notes-button {
    width: 34px;
    height: 34px;
    padding: 0;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f5f7f5;
    color: #99a19b;
}

.notes-button:disabled {
    cursor: not-allowed;
    opacity: .7;
}

.session-switch {
    display: inline-block;
    margin: 0;
}

.session-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.session-switch span {
    display: block;
    width: 38px;
    height: 22px;
    border-radius: 999px;
    background: #dfe4e0;
    position: relative;
    opacity: .65;
}

.session-switch span::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 3px;
    left: 3px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .18);
}

@media (max-width: 560px) {
    .rundown-table th,
    .rundown-table td {
        padding: 13px 8px;
    }

    .rundown-time {
        width: 112px;
        font-size: 11px;
    }

    .rundown-session-status {
        width: 78px;
    }

    .rundown-notes {
        width: 54px;
    }
}
