/* Soteria Global — Draggable Language Picker
   Shared across all engines. Gold-themed, fixed position, draggable. */

.language-switcher {
    position: fixed;
    top: 128px;
    right: 20px;
    background: rgba(212, 175, 55, 0.28);
    border-radius: 4px;
    padding: 3px 7px;
    z-index: 1000;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.language-drag-handle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    cursor: grab;
    color: #000;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    user-select: none;
    touch-action: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    position: relative;
}

.language-drag-handle::before,
.language-drag-handle::after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.45);
}

.language-drag-handle::before {
    width: 1px;
    height: 10px;
}

.language-drag-handle::after {
    width: 10px;
    height: 1px;
}

.language-switcher select {
    border: none;
    background: transparent;
    font-weight: bold;
    padding: 2px 4px;
    font-size: 0.92em;
    min-width: 90px;
    cursor: pointer;
}

.language-switcher select:focus {
    outline: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        right: 10px;
        font-size: 0.7em;
        padding: 3px 5px;
    }
}
