/* Language Switcher Styles */
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.lang-btn {
    background: #f3f3f3;
    border: 1.5px solid #b0b0b0;
    padding: 5px 10px;
    margin: 0 2px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #222;
    opacity: 1;
}

.lang-btn:not(.active) {
    background: #f3f3f3;
    color: #222;
    border: 1.5px solid #007bff;
    opacity: 0.85;
    box-shadow: 0 0 0 1px #007bff inset;
}

.lang-btn:hover {
    background-color: #e6f0ff;
    border-color: #007bff;
    color: #007bff;
}

.lang-btn.active {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    opacity: 1;
}

.lang-btn:first-child {
    margin-left: 0;
}

.lang-btn:last-child {
    margin-right: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 10px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 11px;
    }
}

/* Header top integration */
.header-top .top-info-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-top .language-switcher {
    margin-left: 15px;
}

/* Mobile menu integration */
.mobile-menu-area .language-switcher {
    margin: 15px 0;
    justify-content: center;
}

.mobile-menu-area .lang-btn {
    margin: 0 5px;
    padding: 8px 12px;
    font-size: 14px;
}

/* Separator for language switcher */
.separator {
    margin: 0 10px;
    color: #b0b0b0;
    font-size: 16px;
    font-weight: 400;
    user-select: none;
} 