body, html {
    margin: 0;
    padding: 0;
    font-family: 'Source Code Pro', monospace;
    overflow: hidden;
}

/* #app {
    width: 100vw;
    height: 100vh;
    position: relative;
} */

#canvas {
    width: 100%;
    height: 100%;
}

/* #top-menu {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background-color: white;
    padding: 10px;
    border-radius: var(--radius-2);
    border: 1px solid var(--gray-3);
    box-shadow: var(--shadow-4);
} */

#bottom-left-menu {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 10px;
    background-color: white;
    padding: 5px;
    border-radius: var(--radius-2);
    border: 1px solid var(--gray-3);
    box-shadow: var(--shadow-4);
}

#bottom-left-menu button {
    background-color: transparent;
    border: none;
    padding: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#bottom-left-menu button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2);
}


/* #help-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: var(--gray-2);
    color: var(--gray-9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
} */

/* #left-panel {
    position: absolute;
    top: 50px;
    left: 10px;
    background-color: white;
    padding: 20px;
    border-radius: var(--radius-2);
    border: 1px solid var(--gray-3);
    box-shadow: var(--shadow-4);
} */

/* #left-panel label {
    display: block;
    margin-bottom: 10px;
} */
/* 
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: var(--gray-0);
    margin: 15% auto;
    padding: 20px;
    border: 1px solid var(--gray-5);
    width: 80%;
    max-width: 600px;
    border-radius: var(--radius-2);
}

.close {
    color: var(--gray-7);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: var(--gray-9);
    text-decoration: none;
    cursor: pointer;
} */
