:root {
  --mu-navy: #082456;
  --mu-ink: #0b1d48;
  --mu-mint: #6fd7cb;
  --mu-mint-active: #4cc9b8;
  --mu-mint-ink: #236f68;
  --mu-mint-soft: #eefaf8;
  --mu-canvas: #f5f7f8;
  --mu-surface: #ffffff;
  --mu-border: #dfe8e7;
  --mu-text-secondary: #68758f;
  --mu-text-muted: #98a2b3;
  --mu-dark: #071a33;
  --mu-danger: #b42318;
  --mu-danger-soft: #fff1f0;
  --mu-radius-control: 15px;
  --mu-radius-small: 20px;
  --mu-radius-card: 24px;
  --mu-radius-summary: 28px;
  --mu-shadow-soft: 0 14px 38px rgba(8, 36, 86, .065);
  --mu-shadow-panel: 0 24px 72px rgba(8, 36, 86, .14);
  --mu-desktop-width: 1220px;
  --mu-appbar-height: 78px;
  --mu-dock-height: 76px;
  --mu-app-content-block-start: 24px;
}

html.mu-shell-open,
html.mu-budget-panel-open { overflow: hidden; }

body.moveu-app-page {
  margin: 0;
  min-width: 320px;
  background: var(--mu-canvas);
  color: var(--mu-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.moveu-app-page *,
body.moveu-app-page *::before,
body.moveu-app-page *::after { box-sizing: border-box; }

body.moveu-app-page [hidden] { display: none !important; }

.mu-app,
.mu-app button,
.mu-app input,
.mu-app select,
.mu-app textarea {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mu-app {
  min-height: 100dvh;
  background:
    radial-gradient(circle at 10% -8%, rgba(111, 215, 203, .08), transparent 30%),
    var(--mu-canvas);
  color: var(--mu-ink);
  line-height: 1.45;
}

.mu-app-shell-host.mu-app {
  min-height: 0;
  background: transparent;
}
.mu-app-shell-host button {
  box-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  background-image: none;
}
.mu-app-shell-host .mu-icon-button,
.mu-app-shell-host .mu-soft-dock__item,
.mu-app-shell-host .mu-app-nav-link { background-color: transparent; }
.mu-app-shell-host .mu-sheet-close { background-color: #f8fbfb; color: var(--mu-navy); }
.mu-app-shell-host .mu-soft-dock__item.is-active,
.mu-app-shell-host .mu-app-nav-link.is-active { background-color: var(--mu-mint-soft); }

.mu-app a { color: inherit; text-decoration: none; }
.mu-app button { color: inherit; }
.mu-app img { display: block; max-width: 100%; }

.mu-brand-logo { display: block; width: 100%; height: auto; overflow: visible; }

.mu-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.mu-line-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mu-skip-link {
  position: fixed;
  z-index: 10000;
  top: -100px;
  left: 16px;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--mu-surface);
  box-shadow: var(--mu-shadow-panel);
  font-weight: 700;
}
.mu-skip-link:focus { top: 12px; }

.mu-icon-button,
.mu-quiet-icon-button {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}
.mu-icon-button:hover,
.mu-quiet-icon-button:hover { background: rgba(8, 36, 86, .055); }

.mu-mobile-topbar {
  position: sticky;
  z-index: 70;
  top: 0;
  min-height: 70px;
  padding: max(10px, env(safe-area-inset-top)) 18px 9px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  border-bottom: 1px solid rgba(223, 232, 231, .82);
  background: rgba(245, 247, 248, .9);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
}
.mu-mobile-topbar__brand {
  grid-column: 2;
  justify-self: center;
  width: 132px;
}
.mu-mobile-topbar__brand img { width: 100%; height: auto; }
.mu-mobile-topbar__brand .mu-brand-logo { width: 100%; height: auto; }
.mu-mobile-topbar .mu-icon-button { grid-column: 3; justify-self: end; }
body.admin-bar .mu-mobile-topbar { top: 46px; }

.mu-desktop-appbar { display: none; }

.mu-app-main {
  width: min(100%, var(--mu-desktop-width));
  margin: 0 auto;
  padding: var(--mu-app-content-block-start) 16px calc(var(--mu-dock-height) + 42px + env(safe-area-inset-bottom));
}

.mu-soft-dock {
  position: fixed;
  z-index: 75;
  left: max(10px, env(safe-area-inset-left));
  right: max(10px, env(safe-area-inset-right));
  bottom: max(9px, env(safe-area-inset-bottom));
  min-height: var(--mu-dock-height);
  padding: 7px 6px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  border: 1px solid rgba(210, 222, 221, .94);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 42px rgba(8, 36, 86, .12);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
}

.mu-soft-dock__item {
  min-width: 0;
  min-height: 60px;
  padding: 5px 2px 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 0;
  border-radius: 17px;
  background: transparent;
  color: #788399;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: -.01em;
  cursor: pointer;
}
.mu-soft-dock__item .mu-line-icon { width: 23px; height: 23px; }
.mu-soft-dock__item.is-active { color: var(--mu-navy); background: var(--mu-mint-soft); }
.mu-soft-dock__item.is-active > .mu-line-icon { color: var(--mu-mint-active); }

.mu-nav-progress {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--mu-navy);
  font-size: 8.5px;
  font-weight: 800;
  line-height: 1;
}
.mu-nav-progress svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.mu-nav-progress circle { fill: none; stroke: #dce7e6; stroke-width: 2.5; }
.mu-nav-progress .mu-nav-progress__value { stroke: var(--mu-mint-active); stroke-dasharray: 100; stroke-dashoffset: 100; transition: stroke-dashoffset .45s ease; }

.mu-shell-backdrop,
.mu-budget-backdrop {
  position: fixed;
  z-index: 180;
  inset: 0;
  background: rgba(7, 26, 51, .28);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.mu-shell-backdrop[hidden],
.mu-budget-backdrop[hidden] { display: none; }

.mu-shell-panel,
.mu-budget-panel {
  position: fixed;
  z-index: 190;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: min(90dvh, 820px);
  overflow: auto;
  overscroll-behavior: contain;
  padding: 0 18px calc(20px + env(safe-area-inset-bottom));
  border: 1px solid var(--mu-border);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  background: var(--mu-surface);
  box-shadow: var(--mu-shadow-panel);
  --mu-sheet-drag-y: 0px;
  transform: translateY(calc(102% + var(--mu-sheet-drag-y)));
  opacity: 0;
  transition: transform .28s cubic-bezier(.2,.75,.2,1), opacity .22s ease;
}
.mu-shell-panel[hidden],
.mu-budget-panel[hidden] { display: none; }
.mu-shell-panel.is-open,
.mu-budget-panel.is-open { transform: translateY(var(--mu-sheet-drag-y)); opacity: 1; }
.mu-shell-panel.is-dragging,
.mu-budget-panel.is-dragging { transition: none; user-select: none; }

.mu-shell-panel__handle,
.mu-budget-panel__handle {
  width: 38px;
  height: 4px;
  margin: 9px auto 2px;
  border-radius: 999px;
  background: #d5dfdf;
  touch-action: none;
  cursor: grab;
}

.mu-sheet-close {
  border-color: var(--mu-border);
  background: #f8fbfb;
  color: var(--mu-navy);
}
.mu-sheet-close:hover { background: var(--mu-mint-soft); }

.mu-shell-panel__header,
.mu-budget-panel__header {
  position: sticky;
  z-index: 2;
  top: 0;
  min-height: 78px;
  padding: 16px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(223, 232, 231, .8);
  background: rgba(255, 255, 255, .96);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.mu-shell-panel__header span,
.mu-budget-panel__header span {
  display: block;
  margin: 0 0 2px;
  color: var(--mu-text-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}
.mu-shell-panel__header h2,
.mu-budget-panel__header h2 { margin: 0; font-size: 22px; line-height: 1.2; letter-spacing: -.025em; }
.mu-budget-panel__header p { margin: 4px 0 0; color: var(--mu-text-secondary); font-size: 14px; }

.mu-shell-menu { display: grid; gap: 6px; padding: 14px 0; }
.mu-shell-menu--secondary { margin-top: 2px; border-top: 1px solid var(--mu-border); }
.mu-shell-menu__item {
  min-height: 68px;
  padding: 10px 8px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
  border-radius: 17px;
}
.mu-shell-menu__item:hover { background: var(--mu-canvas); }
.mu-shell-menu__item > span:first-child {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--mu-mint-soft);
  color: var(--mu-navy);
}
.mu-shell-menu__item strong { display: block; font-size: 15px; }
.mu-shell-menu__item small { display: block; margin-top: 2px; color: var(--mu-text-secondary); font-size: 12.5px; }
.mu-shell-menu__item > .mu-line-icon { width: 20px; color: var(--mu-text-muted); }

.mu-shell-empty { padding: 40px 10px 32px; text-align: center; }
.mu-shell-empty > span {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--mu-mint-soft);
  color: var(--mu-navy);
}
.mu-shell-empty strong { display: block; font-size: 17px; }
.mu-shell-empty p { max-width: 270px; margin: 6px auto 0; color: var(--mu-text-secondary); font-size: 14px; }

.mu-notification-list { display: grid; gap: 6px; padding: 14px 0 4px; }
.mu-notification {
  min-height: 66px;
  padding: 10px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  border-radius: 16px;
}
.mu-notification:hover { background: var(--mu-canvas); }
.mu-notification__type {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--mu-mint-soft);
  color: var(--mu-navy);
}
.mu-notification strong,
.mu-notification small,
.mu-notification time { display: block; }
.mu-notification strong { font-size: 14px; }
.mu-notification small { margin-top: 3px; color: var(--mu-text-secondary); font-size: 12.5px; }
.mu-notification time { margin-top: 4px; color: var(--mu-text-muted); font-size: 10.5px; }
.mu-notification.is-unread { background: #f2fbf9; }
.mu-notification.is-unread strong::after { content: ""; width: 6px; height: 6px; margin-left: 7px; display: inline-block; vertical-align: 2px; border-radius: 99px; background: var(--mu-mint-active); }
.mu-notification-badge { position: absolute; top: 4px; right: 3px; min-width: 17px; height: 17px; padding: 0 4px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 99px; background: var(--mu-navy); color: #fff; font-size: 8.5px; font-weight: 850; line-height: 1; }

.mu-shell-toast {
  position: fixed;
  z-index: 240;
  left: 50%;
  bottom: calc(var(--mu-dock-height) + 26px + env(safe-area-inset-bottom));
  width: min(calc(100% - 32px), 430px);
  padding: 13px 16px;
  border: 1px solid rgba(111, 215, 203, .5);
  border-radius: 16px;
  background: var(--mu-dark);
  box-shadow: var(--mu-shadow-panel);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transform: translate(-50%, 12px);
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;
}
.mu-shell-toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

body.moveu-authenticated-shell-page {
  min-width: 320px;
  padding-bottom: calc(var(--mu-dock-height) + 26px + env(safe-area-inset-bottom));
  background: var(--mu-canvas);
}
body.moveu-authenticated-shell-page :where(.elementor-button, button, a):focus-visible {
  outline-color: rgba(76, 201, 184, .5) !important;
}
body.moveu-authenticated-shell-page .elementor-location-header,
body.moveu-authenticated-shell-page > header.site-header,
body.moveu-authenticated-shell-page > #masthead { display: none !important; }
body.moveu-authenticated-shell-page .moveu-dock { display: none !important; }

.mu-primary-button,
.mu-secondary-button,
.mu-danger-button,
.mu-add-button {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--mu-radius-control);
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
}
.mu-primary-button,
.mu-add-button { background: var(--mu-navy); color: #fff !important; }
.mu-primary-button:hover,
.mu-add-button:hover { background: #0c3068; }
.mu-secondary-button { border-color: var(--mu-border); background: var(--mu-surface); }
.mu-danger-button { background: var(--mu-danger-soft); color: var(--mu-danger); }
.mu-primary-button:disabled,
.mu-add-button:disabled,
.mu-danger-button:disabled { opacity: .45; cursor: not-allowed; }

.mu-text-button {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mu-navy);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.mu-field { display: grid; gap: 7px; color: var(--mu-ink); font-size: 14px; font-weight: 650; }
.mu-field input,
.mu-field select,
.mu-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #d5e0df;
  border-radius: var(--mu-radius-control);
  outline: 0;
  background: #fff;
  color: var(--mu-ink);
  font-size: 16px;
  font-weight: 500;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.mu-field textarea { min-height: 96px; resize: vertical; }
.mu-field input:focus,
.mu-field select:focus,
.mu-field textarea:focus { border-color: var(--mu-mint-active); box-shadow: 0 0 0 4px rgba(76, 201, 184, .14); }

.mu-money-input { position: relative; display: block; }
.mu-money-input input { padding-right: 44px; }
.mu-money-input i { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: var(--mu-text-secondary); font-style: normal; }

.mu-disclosure {
  border: 1px solid var(--mu-border);
  border-radius: 18px;
  background: #fafcfc;
}
.mu-disclosure summary {
  min-height: 50px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  color: var(--mu-navy);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}
.mu-disclosure summary::-webkit-details-marker { display: none; }
.mu-disclosure summary .mu-line-icon { width: 18px; transition: transform .2s ease; }
.mu-disclosure[open] summary .mu-line-icon { transform: rotate(180deg); }
.mu-disclosure__content { padding: 2px 14px 16px; display: grid; gap: 14px; }

.mu-budget-panel__body { padding: 18px 0 24px; }
.mu-budget-panel__footer {
  position: sticky;
  z-index: 2;
  bottom: calc(-20px - env(safe-area-inset-bottom));
  margin: 0 -18px calc(-20px - env(safe-area-inset-bottom));
  padding: 14px 18px calc(18px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--mu-border);
  background: rgba(255, 255, 255, .97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.mu-budget-panel__footer .mu-primary-button { width: 100%; }
.mu-budget-panel__footer--stacked { display: grid; gap: 8px; }

.mu-app :where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid rgba(76, 201, 184, .46);
  outline-offset: 3px;
}

/* MoveU interaction contract: intentionally scoped, including Elementor
   controls only where a MoveU authenticated shell is active. */
:where(.mu-app, body.moveu-authenticated-shell-page) :where(a, button, summary):where(:not(#wpadminbar *)) {
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
:where(.mu-app, body.moveu-authenticated-shell-page) :where(a):where(:not(#wpadminbar *)):visited {
  color: var(--mu-navy) !important;
}
:where(.mu-app, body.moveu-authenticated-shell-page) :where(
  .mu-primary-button,
  .mu-add-button,
  .mu-tip__actions > a,
  .elementor-button,
  a.elementor-button-link
) {
  background-color: var(--mu-navy) !important;
  color: #fff !important;
}
:where(.mu-app, body.moveu-authenticated-shell-page) :where(
  .mu-primary-button,
  .mu-add-button,
  .mu-tip__actions > a,
  .elementor-button,
  a.elementor-button-link
):where(:hover, :focus-visible) {
  background-color: #0c3068 !important;
  color: #fff !important;
  box-shadow: 0 9px 22px rgba(8, 36, 86, .14) !important;
  transform: translateY(-1px);
}
:where(.mu-app, body.moveu-authenticated-shell-page) :where(
  .mu-secondary-button,
  .mu-tip-toggle,
  .mu-all-tips,
  .mu-detail-row button,
  .mu-export-grid button
):where(:hover, :focus-visible) {
  border-color: rgba(76, 201, 184, .52) !important;
  background-color: var(--mu-mint-soft) !important;
  color: var(--mu-navy) !important;
}
:where(.mu-app, body.moveu-authenticated-shell-page) :where(
  .mu-text-button,
  .mu-coach-card a,
  a:not(.mu-primary-button):not(.elementor-button):not(.elementor-button-link)
):where(:not(#wpadminbar *)):where(:hover, :focus-visible) {
  color: var(--mu-navy) !important;
  opacity: 1 !important;
  text-decoration-color: rgba(8, 36, 86, .34) !important;
}
:where(.mu-app, body.moveu-authenticated-shell-page) :where(
  .mu-category-row,
  .mu-tip-row,
  .mu-entry-row,
  .mu-action-row,
  .mu-notification,
  .mu-shell-menu__item,
  .mu-app-nav-link,
  .mu-soft-dock__item
):where(:hover, :focus-visible) {
  background-color: #f8fbfa !important;
  color: var(--mu-navy) !important;
}
:where(.mu-app, body.moveu-authenticated-shell-page) :where(
  .mu-category-row__icon,
  .mu-tip-row__icon,
  .mu-entry-row__icon,
  .mu-notification__type,
  .mu-coach-card__icon
):hover {
  filter: saturate(1.08);
}
:where(.mu-app, body.moveu-authenticated-shell-page) :where(a, button, summary):where(:not(#wpadminbar *)):active {
  transform: scale(.99);
}
:where(.mu-app, body.moveu-authenticated-shell-page) :where(a, button, input, select, textarea, summary):where(:not(#wpadminbar *)):focus-visible {
  outline: 0 !important;
  box-shadow: 0 0 0 3px rgba(76, 201, 184, .28) !important;
}
:where(.mu-app, body.moveu-authenticated-shell-page) :where(.mu-danger-button):where(:hover, :focus-visible) {
  border-color: rgba(180, 35, 24, .24) !important;
  background-color: var(--mu-danger-soft) !important;
  color: var(--mu-danger) !important;
}
:where(.mu-app, body.moveu-authenticated-shell-page) .mu-tip__actions > a:where(:link, :visited) {
  background-color: var(--mu-navy) !important;
  color: #fff !important;
}
:where(.mu-app, body.moveu-authenticated-shell-page) .mu-tip__actions > a:where(:hover, :focus-visible) {
  background-color: #0c3068 !important;
  color: #fff !important;
  box-shadow: 0 9px 22px rgba(8, 36, 86, .14) !important;
  transform: translateY(-1px);
}

@media (min-width: 783px) and (max-width: 899px) {
  body.admin-bar .mu-mobile-topbar { top: 32px; }
}

@media (min-width: 900px) {
  :root { --mu-app-content-block-start: 38px; }
  .mu-mobile-topbar,
  .mu-soft-dock { display: none; }

  .mu-desktop-appbar {
    position: sticky;
    z-index: 80;
    top: 0;
    display: block;
    border-bottom: 1px solid rgba(216, 227, 226, .9);
    background: rgba(255, 255, 255, .92);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    backdrop-filter: blur(18px) saturate(145%);
  }
  body.admin-bar .mu-desktop-appbar { top: 32px; }

  .mu-desktop-appbar__inner {
    width: min(calc(100% - 40px), 1380px);
    min-height: var(--mu-appbar-height);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(170px, .8fr) auto minmax(190px, .8fr);
    align-items: center;
    gap: 24px;
  }
  .mu-desktop-appbar__brand { min-width: 0; display: flex; align-items: center; gap: 13px; }
  .mu-desktop-appbar__brand img { width: 116px; height: auto; }
  .mu-desktop-appbar__brand .mu-brand-logo { width: 116px; height: auto; }
  .mu-desktop-appbar__brand span {
    min-width: 0;
    overflow: hidden;
    color: var(--mu-text-secondary);
    font-size: 12px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mu-desktop-appbar__nav { display: flex; align-items: center; justify-content: center; gap: 2px; }
  .mu-app-nav-link {
    min-height: 48px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    border-radius: 15px;
    background: transparent;
    color: var(--mu-text-secondary);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
  }
  .mu-app-nav-link:hover { background: #f5f8f8; color: var(--mu-navy); }
  .mu-app-nav-link.is-active { background: var(--mu-mint-soft); color: var(--mu-navy); }
  .mu-app-nav-link > .mu-line-icon { width: 20px; height: 20px; }
  .mu-app-nav-link .mu-nav-progress { width: 31px; height: 31px; }

  .mu-desktop-appbar__actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
  .mu-profile-button {
    min-width: 0;
    min-height: 48px;
    padding: 4px 9px 4px 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--mu-border);
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
  }
  .mu-profile-button > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--mu-navy);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
  }
  .mu-profile-button > .mu-avatar { overflow: hidden; border-radius: 12px; background: var(--mu-navy); box-shadow: none; }
  .mu-profile-button > .mu-avatar img { display: block; width: 100%; height: 100%; object-fit: cover; }
  .mu-profile-button i { max-width: 112px; overflow: hidden; font-size: 12.5px; font-style: normal; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
  .mu-profile-button .mu-line-icon { width: 16px; height: 16px; color: var(--mu-text-muted); }

  .mu-app-main { padding: var(--mu-app-content-block-start) 20px 72px; }

  .mu-shell-backdrop { z-index: 84; background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .mu-shell-panel {
    z-index: 85;
    left: auto;
    right: max(20px, calc((100vw - 1380px) / 2));
    top: calc(var(--mu-appbar-height) + 10px);
    bottom: auto;
    width: 390px;
    max-height: calc(100dvh - var(--mu-appbar-height) - 24px);
    padding: 0 16px 16px;
    border: 1px solid var(--mu-border);
    border-radius: 24px;
    transform: translateY(-8px) scale(.98);
    transform-origin: top right;
  }
  body.admin-bar .mu-shell-panel { top: calc(var(--mu-appbar-height) + 42px); }
  .mu-shell-panel.is-open { transform: translateY(0) scale(1); }
  .mu-shell-panel__handle { display: none; }
  .mu-shell-panel--more { width: 430px; }
  .mu-shell-panel--compact { width: 350px; }
  .mu-shell-panel--more .mu-shell-menu__item--mobile-only { display: none; }
  .mu-shell-menu--mobile-account { display: none; }

  .mu-shell-toast { bottom: 28px; }
  body.moveu-authenticated-shell-page { padding-bottom: 0; }

  .mu-budget-backdrop { z-index: 180; }
  .mu-budget-panel {
    z-index: 190;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    width: min(460px, 100vw);
    max-height: none;
    padding: 0 28px 28px;
    border: 0;
    border-left: 1px solid var(--mu-border);
    border-radius: 28px 0 0 28px;
    transform: translateX(102%);
  }
  .mu-budget-panel--details { width: min(620px, 100vw); }
  .mu-budget-panel.is-open { transform: translateX(0); }
  .mu-budget-panel__handle { display: none; }
  .mu-budget-panel__header { min-height: 92px; padding: 22px 0 17px; }
  .mu-budget-panel__header h2 { font-size: 24px; }
  .mu-budget-panel__body { padding: 24px 0 30px; }
  .mu-budget-panel__footer {
    bottom: -28px;
    margin: 0 -28px -28px;
    padding: 16px 28px 28px;
  }
  .mu-disclosure__content { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mu-field--wide { grid-column: 1 / -1; }
}

@media (min-width: 900px) and (max-width: 1160px) {
  .mu-desktop-appbar__inner { grid-template-columns: 120px 1fr 100px; gap: 10px; }
  .mu-desktop-appbar__brand span,
  .mu-profile-button i,
  .mu-profile-button > .mu-line-icon { display: none; }
  .mu-app-nav-link { padding-inline: 8px; }
  .mu-app-nav-link > .mu-line-icon { display: none; }
}

@media (max-width: 360px) {
  .mu-soft-dock { left: 5px; right: 5px; padding-inline: 3px; border-radius: 21px; }
  .mu-soft-dock__item { font-size: 10px; }
  .mu-soft-dock__item .mu-line-icon { width: 21px; height: 21px; }
  .mu-nav-progress { width: 31px; height: 31px; }
}

@media (prefers-reduced-motion: reduce) {
  .mu-app *,
  .mu-app *::before,
  .mu-app *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

@media print {
  .mu-mobile-topbar,
  .mu-desktop-appbar,
  .mu-soft-dock,
  .mu-add-button,
  .mu-connection,
  .mu-budget-secondary,
  .mu-budget-backdrop,
  .mu-budget-panel,
  .mu-shell-panel,
  .mu-toast { display: none !important; }
  body.moveu-app-page,
  .mu-app { background: #fff !important; }
  .mu-app-main { width: 100%; padding: 0; }
}
