/* Language Switcher Styles */
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 15px;
    margin-right: 20px;
}

.language-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
}

.language-option:hover {
    opacity: 1;
    transform: scale(1.15);
}

.language-option.active {
    opacity: 1;
}

.language-option.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color, #0066cc);
    border-radius: 2px;
}

.language-flag {
    width: 22px; /* or 24px if you want a tiny bit bigger */
    height: auto;
    object-fit: contain;
    display: block;
}

/* Sponsor logo wrapper */
.sponsor-right-wrapper {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

/* Dark mode adjustments */
[data-theme="dark"] .language-option {
    color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .language-switcher {
        margin: 10px 0;
    }
    
    .language-options {
        justify-content: center;
    }
    
    .sponsor-right-wrapper {
        margin: 10px auto;
        justify-content: center;
    }
} 