body {
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    background: #222;
    color: #bbb;
    font: normal 14px / 16px Avenir, sans-serif;
    height: 100vh;
    overflow: hidden;
}

/* Timeline Container */
.timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 2px;
    background-color: #333;
    height: 40px;
    overflow-y: scroll;
}

/* Each Day represented as a Tiny Dot */
.timeline a {
    width: 2px;
    height: 40px;
    background-color: #ccc;
    margin: 1px;
    display: inline-block;
    text-align: center;
    /* border-radius: 50%; Turns it into a dot */
    position: relative;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* Tooltip for showing the date on hover */
.timeline a::after {
    content: attr(data-date);
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fff;
    padding: 5px;
    font-size: 12px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Hover effect for dots */
.timeline a:hover {
    background-color: #f00;
}

/* Show tooltip when hovering */
.timeline a:hover::after {
    opacity: 1;
}

/* Style for today's date */
.today {
    background-color: #4caf50;
    /* Green color for today */
}

/* Content layout below the timeline */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    height: 100vh;
}

.content {
    display: flex;
    width: 100%;
    /* height: calc(100vh - 200px); Adjust for timeline header */
    height: 100%;
    position: relative;
}

.column {
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.column.right {
    background: #000;
    color-scheme: dark;
    color: #fff;

    h2 {
        color: #ff0;
    }
}

.column.left {
    overflow-y: auto;
    max-height: 100vh;
}

.left,
.right {
    flex: 1;

    color: #000;
    background: #fff;
    color-scheme: light;
}

.center {
    flex: 2;
    background-color: #ffffff;
    text-align: center;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

img {
    max-width: 100%;
    /* height: auto; */
    margin-bottom: 20px;
}

embed,
iframe {
    width: 100%;
    height: 500px;
    margin-bottom: 20px;
}

h2 {
    font-weight: 300;
    font-size: 13px;
    line-height: 13px;
    color: #777;
    margin-bottom: 10px;
}

h1 {
    font-weight: 900;
    font-size: 18px;
    line-height: 18px;
    color: #000;
    margin-bottom: 5px;
}

h3 {
    font-weight: 300;
    font-size: 13px;
    line-height: 13px;
    color: #777;
    margin-bottom: 16px;
}

.thumbnails {
    margin-top: 16px;
    margin-bottom: 16px;
    line-height: 8px;
}

.thumbnail.selected {
    /* border: 2px solid blue; */
    outline: 4px solid rgb(30, 188, 255) !important;
    outline-offset: -3px !important;
}


.thumbnail-box {
    width: 25%;
    height: min-content;
    padding-right: 1px;
    padding-bottom: 1px;
    box-sizing: border-box;
    display: inline-block;
    position: relative;
}

.thumbnail-html {
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    margin-top: 16px;
    margin-bottom: 16px;
}

#viewer {
    position: relative;
    margin-left: 16px;
    margin-right: 16px;
}

/* viewer #left-arrow {
    left: 10px;
    top: 48%;
    width: 34px;
    height: 34px;
}

viewer #right-arrow {
    right: 10px;
    top: 48%;
    width: 34px;
    height: 34px;
} */

.arrow {
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(60, 60, 60, 0.9);
    /* background-color: rgba(0, 0, 0, 0.5); */
    color: #fff;
    padding: 10px;
    font: normal 25px / 22px Arial, sans-serif;
    cursor: pointer;
    user-select: none;
    width: 20px;
    height: 20px;
    outline: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
}

.arrow-left {
    left: 0;
}

.arrow-right {
    right: 0;
}

#players {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
}

#players img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

a {
    text-decoration: none;
    color: rgb(30, 188, 255);
}

.container a {
    color: rgb(0, 138, 255);
}

.emails {
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    margin-top: 16px;
    margin-bottom: 16px;
}

embed,
iframe {
    width: 100%;
    height: 500px;
    margin-bottom: 20px;
}

.email {
    background: #f4f4f4;
    border-bottom: 1px solid #ccc;
    font: normal 13px / 15px "Helvetica", "Arial", sans-serif;
    position: relative;
    overflow: clip;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 12px;
    padding-bottom: 10px;
}