body {
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    --headline-height: 6rem;
    padding-top: var(--headline-height);
    background-color: var(--background-color);
    scrollbar-width: none;
}

html,
body,
div {
    touch-action: none;
    scrollbar-width: none;
}

div {
    font-family: "Inter", "Segoe UI", sans-serif;
    color: var(--text-color);
    box-sizing: border-box;
    user-select: none;
}

label {
    font-size: 0.9rem;
    color: var(--text-color);
}

select, input[type="number"] {
    font-size: 0.95rem;
    color: var(--text-color);
    background: var(--button-background-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 8px 12px;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    min-width: 220px;
}

select:focus {
    outline: none;
    border-color: var(--title-color);
}

#background-logo {
    position: fixed;
    left: 50vw;
    top: 50vh;
    translate: -50% -50%;
    width: 15rem;
    height: 15rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: var(--logo-img-url);
}

#secondary-containers {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 100;
    pointer-events: none;
}

.secondary-container {
    background: var(--background-secondary-container-color);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(6px);
    color: var(--title-color);
    padding: 0.2rem;
    font-family: "Inter", "Segoe UI", sans-serif;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    width: 10rem;
    pointer-events: none;
}

input[type="range"] {
    width: 100%;
    height: 4px;
    background: var(--icon-color);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    pointer-events: all;
    border: 1px solid transparent;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--icon-color);
    border: 2px solid var(--border-color);
    transition: background 0.2s ease, transform 0.1s ease;
}

#none-clickable {
    position: fixed;
    left: 0;
    top: var(--headline-height);
    z-index: 999;
    width: 100vw;
    height: calc(100vh - var(--headline-height));
    display: none;
}