/**
 * Language Switcher Styles
 */

.language-switcher {
    display: flex;
    align-items: center;
    margin-right: 20px;
    border-radius: 20px;
    background-color: rgba(var(--primary-color-rgb), 0.05);
    padding: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.lang-option {
    background: none;
    border: none;
    color: var(--dark-text);
    font-size: 14px;
    font-weight: 600;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 18px;
    margin: 0 2px;
}

.lang-option:hover {
    color: var(--primary-color);
    background-color: rgba(var(--primary-color-rgb), 0.1);
}

.lang-option.active {
    color: var(--white);
    background-color: var(--primary-color);
}

.lang-option:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.3);
}

/* Mobile language switcher - integrated into main styles.css */
/* These styles are now handled by the main CSS file for better integration */
@media (max-width: 768px) {
    /* Language switcher mobile positioning is now handled in main styles.css */
    /* This ensures better integration with header layout */
    .language-switcher {
        /* Mobile positioning removed - now handled in main styles.css */
        /* This prevents conflicts with header layout */
    }

    .lang-option {
        /* Mobile sizing handled in main styles.css */
        /* This ensures consistent touch targets */
    }
}
