:root {
    --main-color: rgba(0.53, 0.81, 0.92, 1.0);
    /* Main color for the site */
    --main-color-rgb: 0.53, 0.81, 0.92;
    /* RGB values for the main color */
}

body {
    background-color: #000000;
    padding: 0;
    margin: 0;
    font-family: "Futura Bk BT";
    gap: 0;
}

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

#ui {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    padding: 40px;
    max-width: 100vw;
    max-height: 100vh;
    display: flex;
    box-sizing: border-box;
}

#ui .container {
    backdrop-filter: blur(30px);
    background-color: rgba(255, 255, 255, 0);
    box-shadow:
        inset 0 0 6px 6px rgba(255, 255, 255, 0.2),
        inset 0 0 1px 1px rgba(118, 196, 180, 0.2),
        1px 1px 2px 2px rgba(90, 100, 120, 0.2),
        0px 0px 10px 10px rgba(90, 100, 120, 0.1),
        0px 0px 2px 2px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
    border-radius: 20px;
    border-style: solid;
    border-color: rgba(118, 196, 227, 0.1);
    border-width: 0px;
    pointer-events: all;
    cursor: default;
    overflow: visible;
    padding: 0;
    position: absolute;
}

#ui .container .container-content {
    color: rgba(180, 221, 255, 0.5);
    font-size: 25px;
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.row {
    display: flex;
    flex-direction: row;
}

.general-info-container {
    width: 500px;
}

.render-type-container {
    top: 150px;
}

select {
    pointer-events: all;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(118, 196, 227, 0.3);
    border-radius: 5px;
    color: rgba(180, 221, 255, 0.5);
    font-size: 20px;
    background-color: rgba(118, 120, 130, 0.3);
    color: red;

}

.toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.toggle::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: rgba(180, 221, 255, 0.1);
    border: 1px solid rgba(180, 221, 255, 0.3);
    margin-right: 10px;
    border-radius: 50%;
}

.toggle.active::before {
    background-color: rgba(180, 221, 255, 0.5);
    border: 1px solid rgba(180, 221, 255, 0.5);
}

.invisible {
    display: none !important;
    height: 0;
    width: 0;
}

.chunk-strategy-container {
    top: 300px;
}

#sliders {
    top: 400px;
}

.slider {
    display: flex;
    width: 300px;
    border-radius: 10px;
    margin-left: 20px;
    margin-right: 20px;
    align-items: center;
    gap: 20px;
}

.handle {
    height: 30px;
    width: 5px;
    background-color: rgba(180, 221, 255, 0.3);
    position: absolute;
    border-radius: 1000px;
    pointer-events: none;
}

.slider-line-container {
    width: 100%;
}

.slider .slider-line {
    width: 100%;
    height: 5px;
    background-color: rgba(180, 221, 255, 0.3);
    border-radius: 1000px;
}

#command-input-container {
    width: max(300px, max-content);
    top: 80%;
}