body {
    background-color: rgb(166,234,255);
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    max-height: 100%;
    margin: 0px;
}

#content {
    overflow-y: auto;
}

.date-section {
    display: flex;
    flex-direction: column;
}

.video-entry,.match-entry {
    margin-top: 5px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.match-entry {
    background-color: Lightgreen;
}

.name {
    flex-grow: 1;
    max-width: 20em;
}

span.copy-button {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #ccc;
    border-radius: 50%;
    margin-left: 2px;
    cursor: pointer;
    vertical-align: bottom;
}

span.copyable-text {
    font-family: monospace;
}

#spoiler-block-bar {
    margin-top: 5px;
    margin-bottom: 5px;
    background-color:red;
    display: none; /* Initially hidden, will be shown by script */
    flex-direction: row;
    align-items: center;
    column-gap: 10px;
}
#spoiler-block-bar.caught-up-with-now {
    background-color:green;
    margin-bottom: 0px; /* Visually merge with the now-bar if caught up */
}

#now-bar {
    margin-top: 5px;
    margin-bottom: 5px;
    display: none; /* Initially hidden, will be shown by script */
    background-color: green;
    gap: 10px;
}
#now-bar.caught-up-with-now {
    margin-top: 0px; /* Visually merge with the spoiler block bar if caught up */
}