:root {
    --gl-input-h: 44px;
    --gl-input-bg: rgba(255, 255, 255, 0.05);
    --gl-input-border: rgba(255, 255, 255, 0.15);
    --gl-input-border-hover: rgba(255, 255, 255, 0.25);
    --gl-input-focus: #8fd3ff;
    --gl-input-shadow: rgba(143, 211, 255, 0.15);

    /* NEW: colors only for the OPEN dropdown list (the items like “legacy, draft…”) */
    --gl-menu-bg: #0f151b;
    --gl-menu-hover-bg: #18212a;
    --gl-menu-active-bg: #1f6feb; /* selected/active row */
    --gl-menu-text: #ffffff;
    --gl-menu-muted: #9fb3c8; /* optgroup label text */
}

.form-select option {
    background-color: var(--gl-menu-bg);
    color: var(--gl-menu-text);
}
