body {
    margin: 0;
    overflow: hidden;
    /* Prevent scrollbars */
    background-color: #1a1a1a;
    /* Dark gray background */
    font-family: sans-serif;
}

canvas {
    display: block;
    /* Removes bottom margin/whitespace */
}

/* Custom lil-gui Theme */
.lil-gui {
    --background-color: rgba(10, 10, 10, 0.85);
    --text-color: #ffffff;
    --title-background-color: rgba(0, 255, 204, 0.15);
    --title-text-color: #00ffcc;
    --widget-color: rgba(255, 255, 255, 0.1);
    --hover-color: rgba(0, 255, 204, 0.3);
    --focus-color: rgba(0, 255, 204, 0.5);
    --number-color: #00ffcc;
    --string-color: #00ffcc;
    --font-family: 'Inter', sans-serif;
    border: 1px solid rgba(0, 255, 204, 0.3);
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.lil-gui .title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(0, 255, 204, 0.2);
    text-align: center;
}

.lil-gui.root>.children>.folder>.title {
    border-top: 1px solid rgba(0, 255, 204, 0.2);
}