/* Language Switcher Styles */
.language-switcher {
    display: flex;
    gap: 8px;
    margin-right: 12px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.lang-btn.active {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lang-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}