.mlp-switcher a.is-active { font-weight: 600; text-decoration: none; }
.mlp-switcher-editor-placeholder { padding: 8px; border: 1px dashed #ccc; }

/* 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) */
}
