/* MwColorPicker
   Prefix: mw-clp-*
   Reorders MudColorPicker's toolbar children via flex order so our teleported
   icon (.mw-clp-tb-slot, MudTeleport OwnClass) renders before the Spectrum,
   Grid, and Palette view-switcher buttons.
*/

/* Default activator — a small eyedropper icon tinted in the picked color. */
.mw-clp-activator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    cursor: pointer;
    flex: 0 0 auto;
}

.mw-clp-activator-disabled {
    cursor: default;
    opacity: 0.5;
}

.mw-clp-tb-slot {
    order: 1;
}

.mud-picker-color-toolbar > .flex-grow-1 {
    order: 2;
}

.mud-picker-color-toolbar > .mud-tooltip-root {
    order: 3;
}
