/* Language Switcher Styles */
.language-switcher {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

/* Give some space between the language selector and the logo when inside .navbar-brand */
.navbar-brand .language-switcher {
    margin-right: 48px;
    /* spacing between selector and logo */
}

.lang-btn {
    background-color: transparent;
    color: #036b73;
    border: 2px solid #ffffff;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 52px;
    text-align: center;
}

.lang-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.lang-btn.active {
    background-color: #ffffff;
    color: #e50185;
}

@media (max-width: 991px) {
    .language-switcher {
        margin-top: 15px;
        justify-content: center;
    }

    /* On narrow screens, remove the right margin so it centers nicely */
    .navbar-brand .language-switcher {
        margin-right: 0;
    }
}