.language-switcher {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid rgba(15, 76, 92, .2);
    border-radius: 7px;
    background: rgba(255, 255, 255, .92);
    color: #0f4c5c;
    font: 800 .78rem/1 Tajawal, Inter, system-ui, sans-serif;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.language-switcher:hover {
    border-color: rgba(0, 143, 140, .48);
    background: #fff;
    color: #007d7a;
}

.language-switcher:focus-visible {
    outline: 3px solid rgba(0, 167, 165, .2);
    outline-offset: 2px;
}

.language-switcher svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.language-switcher.is-dark {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(7, 59, 76, .72);
    color: #fff;
}

.language-switcher.is-dark:hover {
    border-color: rgba(255, 255, 255, .62);
    background: #073b4c;
    color: #fff;
}

@media (max-width: 640px) {
    .language-switcher {
        min-height: 36px;
        padding-inline: 8px;
    }
}
