/* Language Switcher Styles */
.language-switcher {
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
}

.language-switcher .dropdown-toggle {
    display: flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s;
}

.language-switcher .dropdown-toggle:hover,
.language-switcher .dropdown-toggle:focus {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-switcher .dropdown-toggle img {
    width: 20px;
    height: 14px;
    margin-right: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.language-switcher .dropdown-toggle .flag-icon {
    margin-right: 5px;
}

.language-switcher .dropdown-menu {
    min-width: 150px;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.language-switcher .dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    transition: all 0.3s;
}

.language-switcher .dropdown-item:hover,
.language-switcher .dropdown-item:focus {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}

.language-switcher .dropdown-item img {
    width: 20px;
    height: 14px;
    margin-right: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.language-switcher .dropdown-item.active {
    color: #000 !important;
    text-decoration: none;
    background-color: #B6343B;
}

.dropdown-item.active {
    color: #000 !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .language-switcher .dropdown-toggle {
        color: #212529;
    }
}

/* Dark mode support */
.dark-mode .language-switcher .dropdown-toggle {
    color: #fff;
}

.dark-mode .language-switcher .dropdown-menu {
    background-color: #343a40;
    border-color: rgba(255, 255, 255, 0.15);
}

.dark-mode .language-switcher .dropdown-item {
    color: #f8f9fa;
}

.dark-mode .language-switcher .dropdown-item:hover,
.dark-mode .language-switcher .dropdown-item:focus {
    color: #fff;
    background-color: #495057;
}

/* Button styling for language switcher */
.btn.btn-link.p-0.mt-2 {
  background: #B6343B;
  padding-left: 10px !important;
  padding-right: 10px !important;
}