/* ===== LAYOUT ===== */
body {
    margin: 0;
    padding: 0;
    background:transparent;
    background-color: transparent;
    border: solid 2px transparent;
    display: flex;
    flex-direction: column;
    height: 94vh;
    margin-bottom: 6vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
/* ===== BOARD CONTENT ===== */
#board-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: larger;
    color: white;
    text-shadow: 2px 2px 4px #000;
    text-align: center;
    overflow-y: auto;
    min-height: 0; /* Allow flex item to shrink below content size */
}