:root {
    --stage-width: 640px;
    --stage-height: 150px;
    --bg-color: #FFFFFF;
}

body {
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    font-family: 'Helvetica', sans-serif;
    color: #999999;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 25px;
    overflow: auto;
}

/* Full Window Mode */
body.full-window {
    overflow: auto;
    align-items: flex-start;
    padding-top: 25px;
}



body.full-window #layout-container {
    gap: 20px;
    width: 100%;
    height: auto;
    justify-content: flex-start;
}

body.full-window #stage-container {}

a {
    color: #FF0000;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

#layout-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.header-bar {
    display: flex;
    justify-content: center;
    width: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    transform: translateY(-3px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0px;
}

.footer-bar {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    font-family: 'Times New Roman', serif;
    margin-bottom: 35px;
}

#stage-container {
    position: relative;
    width: var(--stage-width);
    height: var(--stage-height);
    background-color: var(--bg-color);
    /* */
    /* */
    overflow: hidden;
    cursor: default;
}

.hidden {
    display: none !important;
}

/* Project 05 Specifics */

/* Text Field: First (Large) */
#field-first {
    position: absolute;
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
    font-size: 96px;
    color: #000000;
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
    /* Ensure tight line height for alignment */
}

/* Text Field: Rest (Small) */
#field-rest {
    position: absolute;
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
    font-size: 19px;
    color: #770000;
    white-space: pre;
    pointer-events: none;
}

.transcript-container {
    width: 400px;
    max-width: calc(100vw - 40px);
    margin: -15px auto 20px auto;
    font-family: 'Times', 'Times New Roman', serif;
    /* Original used Times for text field "notes", but HTML body was default. "notes" cast member was Times 12. "data" was Times 24.  The HTML text looks standard. Let's use Times/Serif to match the "notes" feel or the HTML default. Original HTML font was likely Times. */
    font-size: 16px;
    line-height: 1.14;
    text-align: left;
    color: #999999;
}

.transcript-center {
    text-align: center;
    margin-bottom: 20px;
}

.transcript-section {
    margin-bottom: 15px;
}

.title-img {
    transform: translateY(-2px);
}

/* Override settings icon color */
#prefs-gear {
    color: #444 !important;
}