/* DevTierSwitcher — floating Pill unten rechts, nur aktiv wenn app_test=true.
   Markup: <div id="dev-tier-switcher"><span.dev-label/><a/><a/><a/></div> */

#dev-tier-switcher {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;

    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    border-radius: 999px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.75rem;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#dev-tier-switcher .dev-label {
    font-weight: 700;
    color: #f59e0b;
    padding-right: 0.25rem;
    letter-spacing: 0.05em;
}

#dev-tier-switcher a {
    color: #cbd5e1;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    transition: background-color 0.15s, color 0.15s;
}

@media (hover: hover) {
    #dev-tier-switcher a:hover {
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
    }
}

#dev-tier-switcher a.active {
    background: #f59e0b;
    color: #1f2937;
    font-weight: 700;
}
