/* Language Switcher Styles */
.lang-switcher {
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 10000;
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lang-switcher a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border-radius: 3px;
    transition: background-color 0.2s, color 0.2s;
}

.lang-switcher a:hover {
    background-color: #e8e8e8;
}

.lang-switcher a.active {
    background-color: #0066cc;
    color: white;
    font-weight: 500;
}

.lang-switcher a.active:hover {
    background-color: #0052a3;
}

/* Flag icons using emoji */
.lang-switcher .flag {
    font-size: 16px;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lang-switcher {
        top: auto;
        bottom: 10px;
        right: 10px;
        padding: 4px 8px;
    }

    .lang-switcher a {
        padding: 4px 8px;
        font-size: 12px;
    }
}
