
/* Language Switcher Styles */
.dropdown-toggle-lang::after {
    display: none;
}
.dropdown-toggle-lang:hover {
    opacity: 0.8;
}
.header-top-content ul li {
    list-style: none;
}
.header-top-content .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeIn 0.2s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.header-top-content .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}
.header-top-content .dropdown-item.active {
    background-color: #e9ecef;
    color: #0d6efd;
    font-weight: 600;
}
