/* Language Toggle Styles */

.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: #666;
}

.lang-btn:hover {
    background: #f0f0f0;
    color: #333;
}

.lang-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.lang-btn:focus {
    outline: none;
}


/* Adjust for mobile */

@media (max-width: 768px) {
    .language-toggle {
        top: 10px;
        right: 10px;
        padding: 6px;
    }
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}