* {
    box-sizing: border-box;
    user-select: none;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: white;
}
@media (prefers-color-scheme: dark) {
    body, html {
        background-color: black;
    }
}

.virtual-world {
    position: absolute;
    top: 0;
    left: 0;
    width: 2000px;
    height: 2000px;
    transform-origin: top left;
}

#canvas-container {
    position: relative;
    width: 2000px; /* Should match CANVAS_WIDTH */
    height: 2000px; /* Should match CANVAS_HEIGHT */
}

#canvas-container canvas {
    position: absolute;
    top: 0;
    left: 0;
}

#controls-container {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 15px; /* Space between buttons */
    z-index: 100;
}

#controls-container button {
    font-family: monospace;
    font-size: 14px;
    text-transform: lowercase;
    padding: 5px 10px;
    border: 1px solid #2c2c2c;
    background-color: #f0f8ff; /* A pleasant pastel color */
    color: #2c2c2c;
    cursor: pointer;
    transition: background-color 0.2s;
}

#controls-container button:hover {
    background-color: #e6e6fa; /* Slightly different pastel on hover */
}

#controls-container button:active {
    background-color: #d8bfd8;
    transform: translateY(1px);
}
