/* Language Switcher Styles */
.language-switcher {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 10px;
    display: flex;
    gap: 10px;
    transform: scale(0);
    animation: popIn 0.5s ease forwards;
    animation-delay: 1s;
}

.language-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 11px;
    background-color: #f0f0f0;
}

.language-option:hover {
    transform: scale(1.2);
}

.language-option.active {
    border-color: var(--primary-color, #000);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background-color: var(--secondary-color, #333);
    color: #fff;
}

/* Theme-specific styles for language switcher */
.theme-bluish-colors .language-option.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.theme-orange-colors .language-option.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.theme-green-colors .language-option.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.theme-dark-red-colors .language-option.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Media queries for smaller screens */
@media (max-width: 768px) {
    .language-switcher {
        bottom: 10px;
        left: 10px;
    }
}

/* Animation for language switcher appearance - reuses the same as theme switcher */
@keyframes popIn {
    0% {
        transform: scale(0);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
} 