.mlp-switcher-editor-placeholder { padding: 8px; border: 1px dashed #ccc; }
nav.mlp-switcher {
    background: #F5F5F7;
    padding: 3px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    gap: 2px;
}

nav.mlp-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #585D6C;
    padding: 5px 11px;
    border-radius: 50px;
    transition: all 0.2s;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.mlp-switcher a.is-active {
    color: #fff;
    background: #393E4D;
    pointer-events: none;
    cursor: default;
}

.mlp-switcher a:not(.is-active):hover {
    color: var(--accent);
    background: rgba(0, 0, 0, 0.05);
}

/* Dropdown Layout */
.mlp-layout-dropdown {
    position: relative;
    display: inline-block;
    font-family: inherit;
}
.mlp-layout-dropdown .mlp-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: inherit;
    color: inherit;
    transition: all 0.2s ease;
}
.mlp-layout-dropdown .mlp-dropdown-toggle:hover {
    background: #f5f5f5;
}
.mlp-layout-dropdown .mlp-dropdown-icon {
    display: flex;
    align-items: center;
}
.mlp-layout-dropdown .mlp-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    min-width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 4px 0 0 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    pointer-events: none;
}
.mlp-layout-dropdown.is-open .mlp-dropdown-menu,
.mlp-layout-dropdown:hover .mlp-dropdown-menu,
.mlp-layout-dropdown:focus-within .mlp-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.mlp-layout-dropdown .mlp-dropdown-menu li {
    margin: 0;
    padding: 0;
}
.mlp-layout-dropdown .mlp-dropdown-menu li a {
    display: block;
    padding: 8px 12px;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
.mlp-layout-dropdown .mlp-dropdown-menu li a:hover,
.mlp-layout-dropdown .mlp-dropdown-menu li.is-active a {
    background: #f0f0f0;
}
.mlp-layout-dropdown .mlp-dropdown-menu li.is-active a {
    font-weight: bold;
    color: #e65100; /* Example active color based on the screenshot (orange-ish) */
}
