.schedule-table {
    border-collapse: separate;
    border-spacing: 10px 15px;
}
.schedule-table th {
    padding: 0;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fade-in {
    animation-name: fade-in;
    animation-iteration-count: 1;
    animation-duration: 1000ms;
}

/* copied from https://github.com/laurasandoval/iOS13SegmentedControl */
.segmented-control {
    background: #ebf4ff;
    border-radius: 9px;
    margin: 0;
    padding: 3px;
    border: none;
    outline: none;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    max-width: 300px;
}

.segmented-control .option {
    position: relative;
    cursor: pointer;
}

.segmented-control .option label {
    cursor: pointer;
    position: relative;
    display: block;
    text-align: center;
    padding: 6px 10px;
    background: transparent;
    font-weight: 500;
    color: #3c366b;
    font-size: 14px;
}

.segmented-control .option label::before,
.segmented-control .option label::after {
    content: '';
    width: 1px;
    background: rgba(142, 142, 147, 0.15);
    position: absolute;
    top: 14%;
    bottom: 14%;
    border-radius: 10px;
    will-change: background;
    -webkit-transition: background 0.2s ease;
    transition: background 0.2s ease;
}

.segmented-control .option label::before {
    left: 0;
    transform: translateX(-0.5px);
}

.segmented-control .option label::after {
    right: 0;
    transform: translateX(0.5px);
}

.segmented-control .option:first-of-type {
    grid-column: 1;
    grid-row: 1;
    box-shadow: none;
}

.segmented-control .option:first-of-type label::before {
    opacity: 0;
}

.segmented-control .option:last-of-type label::after {
    opacity: 0;
}

.segmented-control .option input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: none;
    opacity: 0;
}

.segmented-control .selection {
    background: #5a67d8;
    border-radius: 7px;
    grid-column: 1;
    grid-row: 1;
    z-index: 2;
    will-change: transform;
    -webkit-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
}

.segmented-control .option label span {
    display: block;
    position: relative;
    z-index: 2;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    will-change: transform;
}

.segmented-control .option:active input:not(:checked) + label span {
    transform: scale(0.95);
}

.segmented-control .option input:checked + label::before,
.segmented-control .option input:checked + label::after {
    z-index: 1;
}

.segmented-control .option input:checked + label {
    color: #ebf4ff;
    cursor: default;
}
