/* Layout CSS - Main layout structure */

#mainWrapper {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    min-width: 0;
}

.game-header {
    text-align: center;
    padding: 8px 20px;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #4a4a6a;
}

.game-header h1 {
    margin: 0;
    font-size: 1.5em;
}

.main-content-wrapper {
    flex: 1;
    overflow-y: auto;
    padding: 15px 20px;
}

/* Override the old main-layout flex that was horizontal */
.main-layout {
    display: block;
    height: auto;
    gap: 0;
}

/* Override old .main-content to not be flex item */
.main-content {
    flex: none;
    overflow-y: visible;
    min-width: unset;
}
