/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 5px;
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    max-width: calc(100% - 40px);
}

.language-toggle button {
    background: none;
    border: 1px solid #2b6cb0;
    color: #2b6cb0;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.language-toggle button.active {
    background: #2b6cb0;
    color: white;
}

.language-toggle button:hover {
    background: #2c5282;
    color: white;
}

@media (max-width: 768px) {
    .language-toggle {
        left: 10px;
        bottom: 10px;
        padding: 6px;
    }

    .language-toggle button {
        padding: 4px 10px;
        font-size: 0.85em;
    }
}