/* ================================
   DEVELOPER TOOLS CONTROL ICONS
   ================================ */
.control-icon {
    width: 50px;
    height: 50px;
    background: var(--night);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bud);
    font-size: 25px;
    transition: all 0.2s;
    backdrop-filter: blur(10px);
    border: 1px solid var(--dusk);

    &.active,
    &:hover {
        background: var(--dusk);
        color: var(--bloom);
    }
}

/* ================================
   CONTROL PANELS
   ================================ */
.control-panel {
    position: absolute;
    background: var(--night);
    padding: 15px;
    border-radius: 8px;
    color: var(--bud);
    /* font-family now set globally in fonts.css */
    min-width: 250px;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px black;
    border: 1px solid var(--dusk);

    &.show {
        display: block;
    }
}

#worldGenPanel,
#displayPanel,
#audioPanel {
    top: 80px;
    left: 80px;
}

#debugPanel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    top: auto;
    left: auto;
}

#cameraPanel {
    position: fixed;
    top: 20px;
    right: 20px;
    left: auto;
}

