body {
    background-color: #FFFFFF;
    margin: 0;
    scrollbar-width: none;
    overscroll-behavior-x: none;
    overscroll-behavior-y: none;
    -ms-overflow-style: none;
}

#container {
    width: 100vw; 
    height: 100vh; 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#grid-system, #ruler-layer, #dropzone {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#grid-system {
    z-index: 0;
}

#dropzone {
    z-index: 1;
}

#ruler-layer {
    z-index: 2;
}

#center-stage {
    position: fixed;
    z-index: 1000;
    
    top: 33px;
    left: 50%;
    transform: translateX(-50%);

    width: auto;
    height: auto;

    padding: 0.8rem 1rem;

    background-color: #222222;
    color: white;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    outline: 0.5px solid rgba(255,255,255,0.65);
    border-radius: 10px;

    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#share-code {
    position: fixed;
    z-index: 1001;
    
    top: 33px;
    right: 15px;
    width: 40px;
    height: 40px;

    background-color: #222222;
    outline: 0.5px solid rgba(255,255,255,0.65);
    border-radius: 10px;
    border: none;

    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#share-code svg {
    color: white;
    width: 60%;
}

#new-canvas {
    position: fixed;
    z-index: 1001;
    
    top: 83px;
    right: 15px;
    width: 40px;
    height: 40px;

    background-color: #222222;
    outline: 0.5px solid rgba(255,255,255,0.65);
    border-radius: 10px;
    border: none;

    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#new-canvas svg {
    color: white;
    width: 60%;
}

#center-stage img {
    width: 110px;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

#bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 20px;
    background: rgba(34, 34, 34);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#bottom-nav p {
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Arial', sans-serif;
    font-size: 10px;
}

.nav-text {
    color: white;
    font-family: 'Poppins', sans-serif;
}