.timeTable {
    margin: 1.5rem 0;
}

.slot {
    display: flex;
    align-items: stretch;
    margin: 1rem 0;
    width: 100%;
}

.slotNumber {
    flex-shrink: 0;
    width: 2rem;
    position: relative;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto Mono", monospace;
}

.slotNumber::before {
    position: absolute;
    content: "";
    height: 2rem;
    width: 2rem;
    background-color: #463213;
    border-radius: 50%;
    z-index: -1;
}

.slot.blank  .slotNumber::before {
    background-color: #ccc;
}

.slot.break  .slotNumber::before {
    background-color: #b3e0ff;
}

.slot.special .slotNumber::before {
    background-color: #e4cdbf;
}

.slotNumber::after {
    content: "";
    height: calc(100% + 2rem);
    border-left: #fef7ed 10px solid;
    z-index: -2;
    position: absolute;
}

.slot:first-child .slotNumber::after {
    height: 50%;
    top: 50%;
}

.slot:last-child .slotNumber::after {
    height: 50%;
    bottom: 50%;
}

.slotDesc {
    flex-grow: 1;
    border: 1px solid #a0a0a0;
    padding: 10px 12px;
    margin-left: 1rem;
    box-shadow: 0 0 10px 0 #00000030;
    border-radius: 3px;
}

.slot.blank .slotDesc {
    background-color: #ccc;
}

.slot.break .slotDesc {
    background-color: #b3e0ff;
}

.slot.special .slotDesc {
    background-color: #fff0e7;
}

.slotInfo {
    display: flex;
    flex-wrap: wrap;
    font-family: "Roboto Mono", monospace;
    margin-bottom: 5px;
    row-gap: 5px;
}

.slotInfo .slotTime {
    margin-right: 12px;
}

.slotInfo i {
    margin-right: 5px;
}

.presenter {
    margin-right: 12px;
}

.youtube {
    margin-left: auto;
}

.slide {
    margin-left: 8px;
}

.youtube a, .slide a {
    color: inherit;
    transition: color 0.2s;
}

.youtube a:hover, .slide a:hover {
    color: #666;
    
}

.slotName {
    color: #0085dd;
    font-size: 1.3rem;
    font-weight: bold;
    word-wrap: break-word;
}

.embedYoutube {
    margin: 0 auto;
    width: 100%;
    max-width: 700px;
    aspect-ratio: 560 / 315;
}

.embedYoutube iframe {
    width: 100%;
    height: 100%;
}