:root {
    --bg-color: #1e1e1e;
    --text-color: #d4d4d4;
    --controls-bg: #2d2d30;
    --border-color: #444;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    margin: 0;
    min-height: 100vh;
    /* Ensure no inherited visibility: hidden from library interferes */
    visibility: visible !important;
}

/* Auth pages that actually need centering should wrap content in this */
.auth-page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

/* HIDDEN BY DEFAULT */
#protected-content {
    display: none !important;
    text-align: center;
}

button {
    padding: 10px 20px;
    cursor: pointer;
    background: #0e639c;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

#logoutButton {
    background: #a1260d;
    margin-top: 20px;
}