body {
    margin: 0;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #FFFFDD;
    overflow: hidden;
}

#container {
    display: flex;
    flex-direction: column; /* Stack canvas and statuses */
    align-items: center;
}

canvas {
    display: block;
    background-color: black;
    border: 5px solid grey; /* Fixed border issue */
    border-radius: 10px;
}

#statuses {
    width: 300px;
    margin-top: 10px; /* Space between canvas and status */
    padding: 10px;
    border: 5px solid grey; /* Fixed border issue */
    border-radius: 10px;
    text-align: left;
    font-family: Arial, sans-serif;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0.8); /* Optional: light background for readability */
}
