/* Styles specific to the game canvas or game-related UI elements */

#gameCanvas {
    display: block; /* Removes extra space below canvas if it's inline */
    background-color: #222; /* Placeholder background for the canvas */
    /* The border is already on game-container in style.css, but you could add specific canvas border here if needed */
}

/* Example: Styles for elements that might overlay the canvas or are tightly coupled with game state */
.game-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
} 