/* Un-hide the language switcher dropdown and display it inline */
.md-header__option .md-select {
    display: block;
}

/* Hide the toggle button (the globe/translate icon) */
.md-header__option .md-select__toggle {
    display: none;
}

/* Make the inner list visible and flowing horizontally */
.md-header__option .md-select__inner {
    position: static;
    top: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.md-header__option .md-select__list {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.md-header__option .md-select__item {
    padding: 0;
    height: auto;
    line-height: inherit;
}

.md-header__option .md-select__link {
    padding: 0;
    color: var(--md-header-fg-color);
    opacity: 0.7;
    transition: opacity 0.25s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.md-header__option .md-select__link:hover,
.md-header__option .md-select__link--active {
    color: var(--md-header-fg-color);
    opacity: 1;
    background: transparent;
    font-weight: bold;
}
