html, body {
    height: 100%;
    margin: 0;
    overflow: hidden; /* Prevents scrollbars from the canvas */
}

#canvas-container {
    width: 100%;
    height: 100%; /* Full height */
}

canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 300px;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    #controls {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 40vh;
        border-radius: 0;
        border-top: 1px solid #dee2e6;
    }
}