body {
    margin: 0;
    padding: 0;
    background: #000;
    font-family: Arial, sans-serif;
}

.page-container {
    position: relative;
    width: 907px;   /* matches real image width */
    margin: 0 auto;
}

/* Backgrounds */
.wood-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 907px;
    height: auto;
    z-index: 0;
}

.timeline-bg {
    position: relative;
    width: 907px;
    height: 682px;  
    display: block;
    z-index: 1;
}

/* Shows text box */
.shows-box {
    position: absolute;
    top: 140px;
    left: 375px;  /* updated */
    width: 370px;
    line-height: 1.6;
    font-size: 14px;
    z-index: 5;
    text-align: left;
}

/* Content background for overflow */
.content-extension {
    position: absolute;
    top: 682px; 
    left: 0;
    width: 907px;
    z-index: 2;
}

.content-extension img.content-back {
    display: block;
    width: 907px;  /* keep width fixed */
    height: auto;  /* vertical height stretched dynamically by JS */
}

/* Footer */
.footer {
    position: absolute;
    width: 907px;
    height: 18px;
    left: 0;
    z-index: 3;
}

/* Thumbnails layout */
.thumbnail-container {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
}

.thumbnail {
    width: 75px;
    height: auto; 
    cursor: pointer;
    transition: 0.3s;
}

.thumbnail:hover { opacity: 0.8; }

/* Video thumbnails layout */
.video-thumbnail-container {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
}

.video-item {
    text-align: center;
    width: 75px; 
}

.video-thumb {
    width: 75px;
    height: auto;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.video-thumb:hover { transform: scale(1.05); }

.video-caption {
    margin-top: 6px;
    font-size: 13px;
    color: #000;
    line-height: 1.3;
}

/* Modal overlay */
.modal {
    display: none; 
    position: fixed;  
    z-index: 10;      
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;      
    height: 100%;     
    overflow: auto;   
    background-color: rgba(0,0,0,0.9); 
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;    
    max-height: 80%;   
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.comment-form { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.comment-form input, .comment-form textarea { width: 100%; padding: 5px; font-size: 14px; }
.comment-form button { width: 120px; padding: 6px; font-size: 14px; cursor: pointer; }
.comment-entry { border-bottom: 1px solid #ccc; margin-bottom: 10px; padding-bottom: 5px; }
.comment-meta { font-weight: bold; margin-bottom: 3px; }
.comment-body { margin-left: 10px; white-space: pre-wrap; }
#commentResponse { color: red; font-size: 13px; margin-top: 5px; }


.was-there-container {
    display: inline-flex;       /* horizontal layout */
    align-items: center;        /* vertical centering */
    gap: 5px;                   /* space between box and text */
    margin-top: 5px;            /* small spacing from previous element */
}

.was-there-container input[type="checkbox"] {
    width: auto;                /* ignore any width:100% rules */
    margin: 0;                  /* remove default margins */
}




.back-link {
    position: absolute;
    top: 225px; /* matches the shows-box top */
    left: 175px; /* adjust horizontally until it sits exactly where you want */
    font-size: 16px;
    font-weight: bold;
    color: black;
    text-decoration: none;
    z-index: 5; /* above the background and shows list */
}

.close:hover { color: #bbb; }

#caption {
    text-align: center;
    color: #fff;
    padding: 10px;
}
.big-text {
    font-size: 16px;  /* your choice */
    font-weight: bold; /* optional */
}


.comment,
.comment-list,
#comments,
.comments {
    display: block !important;
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    background: rgba(255,0,0,0.05);
}
