/* Language Switcher Styles */
.lang-switcher-container {
    display: inline-flex;
    background: white;
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e5e9;
}

.lang-switcher-link {
    padding: 2px 16px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    word-break: keep-all;
    hyphens: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.lang-switcher-link--active {
    background: #0350B5;
    color: white;
}

.lang-switcher-link:not(.lang-switcher-link--active) {
    color: #6c757d;
}

.lang-switcher-link:not(.lang-switcher-link--active):hover {
    background: #f8f9fa;
    color: #0350B5;
}

@media (min-width: 992px) and (max-width: 1279.98px) {
    .lang-switcher-container { padding: 3px; }
    .lang-switcher-link {
        padding: 2px 12px;    /* slimmer buttons */
        font-size: 13px;      /* slightly smaller text */
    }
}

/* Show on desktop & tablet, hide on mobile */
.desktop-view {
    display: none !important;
}

@media (min-width: 992px) {
    .desktop-view {
        display: inline-flex !important;
    }
}