/* Language Switcher Styles */
.language-switcher {
    position: relative;
}

.language-link {
    display: flex !important;
    align-items: center;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: transparent;
    color: #333;
    text-decoration: none;
}

.language-link:hover {
    background-color: #f8f9fa;
    color: #0583CC;
}

.language-dropdown {
    min-width: 120px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 8px 0;
}

.language-dropdown li {
    margin: 0;
}

.language-dropdown a {
    display: flex !important;
    align-items: center;
    padding: 8px 16px;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.language-dropdown a:hover {
    background-color: #f8f9fa;
    color: #0583CC;
}

.language-dropdown a.active {
    background-color: #0583CC;
    color: white;
    font-weight: 500;
}

.language-dropdown a.active:hover {
    background-color: #0470a8;
}

/* Flag images */
.language-dropdown img,
.language-link img {
    border-radius: 2px;
    border: 1px solid #dee2e6;
    vertical-align: middle;
}

/* Mobile responsive */
@media (max-width: 991.98px) {
    .language-switcher {
        display: none; /* Hide in mobile menu for now */
    }
}

/* Animation for dropdown */
.language-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-switcher:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
