:root {
  --dash-green-50: #effbf2;
  --dash-green-100: #d9f8e1;
  --dash-green-500: #2fb266;
  --dash-green-600: #209253;
  --dash-green-700: #126b3d;
  --dash-yellow: #e3f8df;
  --dash-yellow-strong: #a7e870;
  --dash-coral: #ff7044;
  --dash-blue: #37a7df;
  --dash-ink: #1d3328;
  --dash-muted: #6a7d71;
  --dash-line: #e3eee6;
  --dash-white: #ffffff;
  --dash-bg: #f3f7f5;
  --dash-shadow: 0 12px 24px rgba(33, 100, 63, 0.1);
}

* {
  box-sizing: border-box;
}

body.dashboard-page {
  margin: 0;
  min-height: 100vh;
  color: var(--dash-ink);
  background: var(--dash-bg);
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  width: 252px;
  border-right: 1px solid var(--dash-line);
  background: var(--dash-white);
  overflow: hidden;
}

.sidebar-title {
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 0 16px;
  color: var(--dash-white);
  background: linear-gradient(90deg, var(--dash-green-700), var(--dash-green-500));
  font-size: 22px;
  font-weight: 700;
}

.sidebar-menu {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 10px 0 18px;
  scrollbar-color: var(--dash-green-500) transparent;
  scrollbar-width: thin;
}

.sidebar-menu::-webkit-scrollbar {
  width: 7px;
}

.sidebar-menu::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar-menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, var(--dash-green-700), var(--dash-green-500));
}

.sidebar-menu a {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid #edf3ef;
  padding: 0 14px;
  color: #35493e;
  font-weight: 600;
}

.sidebar-menu a.active,
.sidebar-menu a:hover {
  color: var(--dash-green-700);
  background: var(--dash-green-50);
}

.sidebar-menu span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(47, 178, 102, 0.16);
  border-radius: 9px;
  color: var(--dash-green-700);
  background: linear-gradient(145deg, #f7fff8, #ddf7e3);
  box-shadow: 0 8px 18px rgba(33, 100, 63, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.sidebar-menu svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.sidebar-menu a:nth-child(4n + 2) span {
  color: #1b83a6;
  background: linear-gradient(145deg, #f5fdff, #dff4fb);
}

.sidebar-menu a:nth-child(4n + 3) span {
  color: #d56d2b;
  background: linear-gradient(145deg, #fffaf4, #ffe9d7);
}

.sidebar-menu a:nth-child(4n + 4) span {
  color: #8c6a00;
  background: linear-gradient(145deg, #fffff4, #eef7cf);
}

.sidebar-menu a.active span,
.sidebar-menu a:hover span {
  color: var(--dash-white);
  background: linear-gradient(135deg, var(--dash-green-700), var(--dash-green-500));
  box-shadow: 0 10px 20px rgba(18, 107, 61, 0.18);
  transform: translateY(-1px) scale(1.03);
}

.dashboard-shell {
  min-height: 100vh;
  margin-left: 252px;
}

.dashboard-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  background: linear-gradient(90deg, var(--dash-green-700), var(--dash-green-500));
  box-shadow: 0 6px 20px rgba(18, 107, 61, 0.16);
}

.topbar-left,
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dashboard-menu-btn {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.dashboard-menu-btn span {
  display: block;
  width: 30px;
  height: 4px;
  margin: 2px 0;
  border-radius: 4px;
  background: var(--dash-white);
}

.dashboard-logo img {
  width: auto;
  height: 54px;
  max-width: 156px;
  object-fit: contain;
}

.withdraw-btn {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dash-white);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--dash-green-700);
  background: var(--dash-white);
  font-weight: 700;
  white-space: nowrap;
}

.avatar-btn {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  padding: 0;
  background: var(--dash-white);
  overflow: hidden;
}

.avatar-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-content {
  padding: 16px;
}

.dashboard-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dash-line);
  border-radius: 8px;
  background: var(--dash-white);
  box-shadow: var(--dash-shadow);
}

.dashboard-banner img {
  width: 100%;
  height: 176px;
  object-fit: fill;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--dash-shadow);
}

.slider-arrow::before {
  display: block;
  color: var(--dash-green-700);
  font-size: 30px;
  line-height: 38px;
}

.slider-arrow.prev {
  left: 14px;
}

.slider-arrow.next {
  right: 14px;
}

.slider-arrow.prev::before {
  content: "‹";
}

.slider-arrow.next::before {
  content: "›";
}

.slider-dots {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d6d6d6;
}

.slider-dots .active {
  background: var(--dash-green-500);
}

.notice-bar {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  border: 1px solid #c8ebc7;
  border-radius: 8px;
  padding: 8px 12px;
  background: #f2fff0;
}

.notice-icon,
.notice-bar a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 7px;
  color: var(--dash-green-700);
  background: #dff7e5;
  font-weight: 700;
}

.notice-bar p {
  margin: 0;
  color: #b64a73;
  text-align: center;
  font-weight: 600;
}

.vendor-zone {
  margin-top: 14px;
  border: 1px solid #c8ebc7;
  border-radius: 8px;
  padding: 22px 16px;
  background: var(--dash-white);
  text-align: center;
  box-shadow: var(--dash-shadow);
}

.vendor-zone h1 {
  margin: 0 0 6px;
  color: var(--dash-green-700);
  font-size: 24px;
  line-height: 1.25;
}

.vendor-zone p {
  max-width: 720px;
  margin: 0 auto 12px;
  color: #5c755f;
}

.zone-btn {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 16px;
  color: var(--dash-white);
  background: var(--dash-green-500);
  font-weight: 700;
}

.shortcut-grid,
.wide-shortcuts {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.shortcut-grid {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.wide-shortcuts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 18px;
  background: var(--dash-white);
}

.shortcut-card,
.wide-shortcuts a {
  display: grid;
  min-height: 108px;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid var(--dash-line);
  border-radius: 8px;
  background: var(--dash-white);
  text-align: center;
  box-shadow: 0 10px 18px rgba(33, 100, 63, 0.07);
}

.primary-shortcuts,
.secondary-shortcuts {
  padding: 16px;
  background: var(--dash-yellow);
}

.secondary-shortcuts {
  background: #edfbea;
}

.icon {
  display: grid;
  min-width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 7px;
  padding: 0 7px;
  font-size: 12px;
  font-weight: 700;
}

.icon.mint {
  color: #159c65;
  background: #d9fff0;
}

.icon.coral {
  color: #db5633;
  background: #ffe4d8;
}

.icon.blue {
  color: #1b8cc8;
  background: #dff1ff;
}

.icon.amber {
  color: #b07300;
  background: #e8f8df;
}

.shortcut-card strong,
.wide-shortcuts strong {
  font-size: 15px;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .shortcut-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .dashboard-sidebar {
    transform: translateX(-100%);
    transition: transform 0.2s ease;
  }

  body.sidebar-open .dashboard-sidebar {
    transform: translateX(0);
  }

  .dashboard-shell {
    margin-left: 0;
  }

  .dashboard-content {
    padding: 12px;
  }

  .dashboard-topbar {
    min-height: 88px;
  }

  .dashboard-logo img {
    height: 68px;
    max-width: 150px;
  }

  .topbar-actions {
    gap: 8px;
  }

  .withdraw-btn {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 14px;
  }

  .avatar-btn {
    width: 38px;
    height: 38px;
  }

  .dashboard-banner img {
    height: 154px;
  }

  .notice-bar {
    grid-template-columns: 34px 1fr 34px;
  }

  .notice-bar p {
    font-size: 14px;
  }

  .shortcut-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wide-shortcuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  body.dashboard-page {
    background: #ecfbec;
  }

  .dashboard-topbar {
    min-height: 96px;
    padding-inline: 12px;
  }

  .dashboard-logo img {
    max-width: 138px;
  }

  .withdraw-btn,
  .avatar-btn {
    display: none;
  }

  .dashboard-banner img {
    height: 170px;
  }

  .slider-arrow {
    width: 34px;
    height: 34px;
  }

  .vendor-zone {
    padding: 18px 12px;
  }

  .shortcut-grid {
    gap: 12px;
    padding: 12px;
  }

  .wide-shortcuts {
    gap: 12px;
    padding: 12px;
  }

  .shortcut-card,
  .wide-shortcuts a {
    min-height: 112px;
  }
}

/* Dashboard polish layer */
@media (prefers-reduced-motion: no-preference) {
  .dashboard-topbar {
    animation: dashTopbarDrop 0.42s ease both;
  }

  .dashboard-banner,
  .notice-bar,
  .vendor-zone,
  .shortcut-grid,
  .wide-shortcuts {
    animation: dashFadeUp 0.55s ease both;
  }

  .notice-bar {
    animation-delay: 0.06s;
  }

  .vendor-zone {
    animation-delay: 0.1s;
  }

  .shortcut-grid,
  .wide-shortcuts {
    animation-delay: 0.14s;
  }

  .dash-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }

  .dash-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @keyframes dashTopbarDrop {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes dashFadeUp {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.dashboard-topbar {
  min-height: 56px;
  backdrop-filter: blur(14px);
}

.sidebar-title {
  min-height: 56px;
}

.dashboard-logo img {
  height: 40px;
  transition: transform 0.22s ease;
}

.dashboard-logo:hover img {
  transform: scale(1.04);
}

.dashboard-menu-btn,
.withdraw-btn,
.avatar-btn,
.sidebar-menu a,
.shortcut-card,
.wide-shortcuts a,
.zone-btn,
.notice-bar a,
.slider-arrow {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.dashboard-menu-btn {
  width: 40px;
  height: 40px;
}

.dashboard-menu-btn span {
  width: 26px;
  height: 3px;
}

.dashboard-menu-btn:hover,
.withdraw-btn:hover,
.avatar-btn:hover,
.zone-btn:hover,
.notice-bar a:hover,
.slider-arrow:hover {
  transform: translateY(-2px);
}

.dashboard-menu-btn:hover {
  background: rgba(255, 255, 255, 0.13);
}

.withdraw-btn:hover {
  box-shadow: 0 10px 20px rgba(18, 107, 61, 0.18);
}

.sidebar-menu a {
  position: relative;
}

.sidebar-menu a::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: var(--dash-green-500);
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
  content: "";
}

.sidebar-menu a.active::before,
.sidebar-menu a:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.shortcut-card:hover,
.wide-shortcuts a:hover {
  border-color: #b8e8c6;
  box-shadow: 0 16px 30px rgba(33, 100, 63, 0.13);
  transform: translateY(-4px);
}

.shortcut-card:hover .icon,
.wide-shortcuts a:hover .icon {
  transform: scale(1.08);
}

.icon {
  transition: transform 0.2s ease;
}

.dashboard-banner {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dashboard-banner:hover {
  box-shadow: 0 18px 36px rgba(33, 100, 63, 0.14);
  transform: translateY(-2px);
}

@media (max-width: 820px) {
  .dashboard-topbar {
    min-height: 72px;
  }

  .dashboard-logo img {
    height: 52px;
  }
}

@media (max-width: 520px) {
  .dashboard-topbar {
    min-height: 78px;
  }

  .dashboard-banner img {
    height: 156px;
  }

  .dashboard-banner .slider-arrow {
    display: none;
  }

  .shortcut-card:hover,
  .wide-shortcuts a:hover,
  .dashboard-banner:hover,
  .dashboard-menu-btn:hover,
  .withdraw-btn:hover,
  .avatar-btn:hover,
  .zone-btn:hover,
  .notice-bar a:hover,
  .slider-arrow:hover {
    transform: none;
  }
}

/* Admin dashboard focused polish */
.admin-dashboard {
  --admin-card-green: linear-gradient(135deg, #08732f 0%, #087f36 56%, #0a8a3d 100%);
  --admin-card-green-soft: linear-gradient(135deg, #f4fff5 0%, #e3f8e7 100%);
  --admin-border: rgba(8, 127, 54, 0.16);
  --admin-shadow: 0 14px 30px rgba(20, 107, 64, 0.12);
  background:
    radial-gradient(circle at 8% 11%, rgba(167, 232, 112, 0.28) 0 70px, transparent 72px),
    radial-gradient(circle at 98% 42%, rgba(185, 235, 200, 0.55) 0 78px, transparent 80px),
    linear-gradient(180deg, #eefaf0 0%, #f7fbf8 100%);
}

.admin-dashboard .dashboard-sidebar {
  width: 224px;
  border-right-color: rgba(8, 127, 54, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 12px 0 28px rgba(20, 107, 64, 0.06);
  transition: width 0.24s ease;
  overflow: hidden;
}

.admin-dashboard .dashboard-shell {
  margin-left: 224px;
  transition: margin-left 0.24s ease;
}

.admin-dashboard .sidebar-title {
  min-height: 56px;
  justify-content: flex-start;
  margin: 0;
  border-radius: 14px 14px 0 0;
  padding: 0 0 0 10px;
  color: transparent;
  background:
    radial-gradient(circle at 16% -10%, rgba(167, 232, 112, 0.3), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 46%),
    linear-gradient(90deg, #055e27 0%, #087a34 54%, #0a8a3d 100%);
  font-size: 0;
  box-shadow: 0 10px 24px rgba(20, 107, 64, 0.12);
}

.admin-dashboard .sidebar-logo {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
}

.admin-dashboard .sidebar-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: brightness(1.18) saturate(1.14);
}

.admin-dashboard .dashboard-topbar {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(260px, 430px) minmax(168px, 1fr);
  min-height: 56px;
  margin: 0;
  border-radius: 14px 14px 0 0;
  padding: 0 14px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 12% -18%, rgba(167, 232, 112, 0.26), transparent 24%),
    radial-gradient(circle at 88% -16%, rgba(72, 190, 116, 0.34), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 48%),
    linear-gradient(90deg, #055e27 0%, #08732f 34%, #0a8f3f 100%);
  box-shadow: 0 10px 28px rgba(20, 107, 64, 0.16);
  isolation: isolate;
  overflow: visible;
}

.admin-dashboard .dashboard-topbar::before {
  content: "";
  position: absolute;
  inset: 6px 10px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px 10px 0 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.admin-dashboard .dashboard-topbar > * {
  position: relative;
  z-index: 1;
}

.admin-dashboard .topbar-left {
  min-width: 0;
  flex: 1;
  gap: 8px;
}

.admin-dashboard .topbar-actions {
  flex: 0 0 auto;
  justify-content: flex-end;
}

.admin-dashboard .topbar-context {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.admin-dashboard .topbar-context-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 10px;
  color: #08732f;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 20px rgba(0, 63, 31, 0.14);
}

.admin-dashboard .topbar-context-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.admin-dashboard .topbar-context-title {
  display: flex;
  min-width: 0;
  flex: 0 1 auto;
  align-items: baseline;
  gap: 8px;
}

.admin-dashboard .topbar-context-title span {
  display: none;
}

.admin-dashboard .topbar-context-title strong {
  display: block;
  overflow: hidden;
  max-width: 210px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-dashboard .topbar-context p {
  display: none;
}

.admin-dashboard .topbar-context-chips {
  display: none;
}

.admin-dashboard .topbar-context-chips span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0 9px;
  color: #08732f;
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.admin-dashboard .dashboard-menu-btn {
  width: 34px;
  height: 34px;
  align-content: center;
  border-radius: 10px;
  gap: 5px;
}

.admin-dashboard .dashboard-menu-btn span {
  width: 22px;
  height: 2px;
  margin: 0;
}

.admin-dashboard .dashboard-logo {
  display: inline-flex;
  min-width: 86px;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
  border-radius: 12px;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.admin-dashboard .dashboard-logo img {
  height: 46px;
  max-width: 108px;
  filter: brightness(1.18) saturate(1.12);
}

.admin-dashboard .withdraw-btn {
  min-width: 128px;
  min-height: 36px;
  border: 0;
  color: #08732f;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(20, 107, 64, 0.14);
}

.admin-dashboard .avatar-btn {
  width: 38px;
  height: 38px;
  border-color: rgba(255, 255, 255, 0.7);
}

.admin-dashboard .topbar-live-feed {
  display: inline-flex;
  min-width: 0;
  height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 12px 24px rgba(0, 74, 34, 0.12);
  backdrop-filter: blur(10px);
}

.admin-dashboard .topbar-live-feed em {
  color: #dff7e5;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.admin-dashboard .topbar-live-feed strong {
  overflow: hidden;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-dashboard .topbar-live-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #a7e870;
  box-shadow: 0 0 0 0 rgba(167, 232, 112, 0.56);
  animation: adminLivePulse 1.8s ease-out infinite;
}

.admin-dashboard .topbar-report-menu,
.admin-dashboard .topbar-profile-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.admin-dashboard .report-trigger {
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: linear-gradient(180deg, #ffffff, #f0fff2);
}

.admin-dashboard .report-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.admin-dashboard .topbar-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 50;
  width: 224px;
  border: 1px solid rgba(8, 127, 54, 0.14);
  border-radius: 14px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 45px rgba(20, 107, 64, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.admin-dashboard .topbar-report-menu:hover .topbar-dropdown,
.admin-dashboard .topbar-report-menu:focus-within .topbar-dropdown,
.admin-dashboard .topbar-report-menu.is-open .topbar-dropdown,
.admin-dashboard .topbar-profile-menu:hover .topbar-dropdown,
.admin-dashboard .topbar-profile-menu:focus-within .topbar-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.admin-dashboard .topbar-dropdown a {
  display: grid;
  gap: 2px;
  border-radius: 10px;
  padding: 9px 10px;
  color: #1d3328;
  font-weight: 900;
}

.admin-dashboard .topbar-dropdown a:hover {
  color: #08732f;
  background: #eaffee;
}

.admin-dashboard .topbar-dropdown small,
.admin-dashboard .profile-summary span {
  color: #6a7d71;
  font-size: 12px;
  font-weight: 800;
}

.admin-dashboard .profile-dropdown {
  width: 188px;
}

.admin-dashboard .profile-summary {
  border-bottom: 1px solid #e3eee6;
  margin-bottom: 6px;
  padding: 8px 10px 10px;
}

.admin-dashboard .profile-summary strong {
  display: block;
  color: #08732f;
}

.admin-dashboard .topbar-profile-menu::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 3px;
  width: 9px;
  height: 9px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #a7e870;
}

@keyframes adminLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(167, 232, 112, 0.56); }
  70% { box-shadow: 0 0 0 9px rgba(167, 232, 112, 0); }
  100% { box-shadow: 0 0 0 0 rgba(167, 232, 112, 0); }
}

.admin-dashboard .dashboard-content {
  padding: 12px 16px 18px;
}

.admin-dashboard .dashboard-banner {
  border-color: var(--admin-border);
  border-radius: 8px;
  box-shadow: var(--admin-shadow);
}

.admin-dashboard .dashboard-banner img {
  height: 156px;
}

.admin-dashboard .slider-arrow {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.9);
}

.admin-dashboard .slider-arrow.prev {
  left: 12px;
}

.admin-dashboard .slider-arrow.next {
  right: 12px;
}

.admin-dashboard .slider-dots {
  bottom: 8px;
}

.admin-dashboard .notice-bar {
  min-height: 42px;
  margin-top: 10px;
  border-color: var(--admin-border);
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(20, 107, 64, 0.08);
}

.admin-dashboard .dashboard-content > .notice-ticker:first-child {
  margin-top: 0;
}

.admin-dashboard .notice-ticker {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 10px;
  overflow: hidden;
}

.admin-dashboard .notice-bar p {
  color: #8b4464;
  font-size: 15px;
}

.admin-dashboard .notice-icon,
.admin-dashboard .notice-bar a:not(.notice-status-btn) {
  width: 30px;
  height: 30px;
  color: #08732f;
  background: #dff7e5;
}

.admin-dashboard .notice-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.admin-dashboard .notice-track {
  display: flex;
  align-items: center;
  overflow: hidden;
  min-width: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.admin-dashboard .notice-run {
  display: inline-flex;
  flex: 0 0 auto;
  width: max-content;
  min-width: 100%;
  align-items: center;
  gap: 26px;
  padding-inline: 14px;
  color: #264137;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  animation: noticeTicker 28s linear infinite;
}

.admin-dashboard .notice-run span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admin-dashboard .notice-run span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #08732f;
  box-shadow: 0 0 0 4px rgba(8, 127, 54, 0.13);
}

.admin-dashboard .notice-ticker:hover .notice-run {
  animation-play-state: paused;
}

.admin-dashboard .notice-status-btn {
  min-width: 112px;
  min-height: 30px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--admin-card-green);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(20, 107, 64, 0.16);
}

@keyframes noticeTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.admin-dashboard .vendor-zone {
  margin-top: 10px;
  border-color: var(--admin-border);
  padding: 18px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 255, 245, 0.94)),
    var(--dash-white);
  box-shadow: var(--admin-shadow);
}

.admin-dashboard .vendor-zone h1 {
  margin-bottom: 4px;
  color: #08732f;
  font-size: 25px;
}

.admin-dashboard .vendor-zone p {
  margin-bottom: 10px;
  color: #4c6758;
  line-height: 1.45;
}

.admin-dashboard .zone-btn {
  min-height: 34px;
  background: var(--admin-card-green);
  box-shadow: 0 10px 20px rgba(20, 107, 64, 0.16);
}

.admin-dashboard .mission-control {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(360px, 1.2fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
}

.admin-dashboard .mission-copy span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  color: #08732f;
  background: #dff7e5;
  font-size: 12px;
  font-weight: 900;
}

.admin-dashboard .mission-copy h1 {
  margin-top: 6px;
}

.admin-dashboard .mission-score {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at center, #08732f 0 55%, transparent 56%),
    conic-gradient(#0bb35d 0 86%, rgba(8, 127, 54, 0.16) 86% 100%);
  box-shadow: 0 14px 28px rgba(20, 107, 64, 0.18);
}

.admin-dashboard .mission-score strong {
  display: block;
  margin-top: 12px;
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
}

.admin-dashboard .mission-score span {
  display: block;
  margin-top: -18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.admin-dashboard .mission-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.admin-dashboard .mission-mini-grid a {
  min-height: 70px;
  border: 1px solid rgba(8, 127, 54, 0.14);
  border-radius: 10px;
  padding: 10px;
  color: #08732f;
  background: #f7fff8;
  text-align: center;
}

.admin-dashboard .mission-mini-grid b {
  display: block;
  color: #08732f;
  font-size: 24px;
  line-height: 1;
}

.admin-dashboard .mission-mini-grid span {
  display: block;
  margin-top: 5px;
  color: #4c6758;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.admin-dashboard .mission-actions {
  display: grid;
  gap: 7px;
}

.admin-dashboard .mission-actions .zone-btn {
  justify-content: center;
  min-width: 112px;
  min-height: 32px;
  padding: 0 10px;
}

.admin-dashboard .mission-actions .zone-btn.ghost {
  color: #08732f;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(8, 127, 54, 0.18);
}

.admin-dashboard .primary-shortcuts {
  gap: 8px;
  margin-top: 8px;
  border-radius: 8px;
  padding: 10px;
  background: rgba(223, 247, 229, 0.86);
}

.admin-dashboard .shortcut-card {
  position: relative;
  display: grid;
  min-height: 86px;
  grid-template-rows: 34px auto;
  place-items: center;
  align-content: center;
  align-items: center;
  gap: 6px;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  padding: 10px 7px 9px;
  color: #ffffff;
  background: var(--admin-card-green);
  box-shadow: 0 12px 24px rgba(20, 107, 64, 0.14);
  text-align: center;
}

.admin-dashboard .shortcut-card::before {
  content: "●";
  position: absolute;
  inset: 7px 8px auto auto;
  width: auto;
  height: auto;
  color: #a7e870;
  background: transparent;
  font-size: 11px;
  line-height: 1;
  box-shadow: none;
}

.admin-dashboard .shortcut-card.hot::before {
  color: #fff2b3;
  text-shadow: 0 0 12px rgba(255, 242, 179, 0.72);
}

.admin-dashboard .shortcut-card strong {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.08;
  white-space: normal;
}

.admin-dashboard .shortcut-card small {
  position: absolute;
  top: 7px;
  left: 7px;
  display: inline-flex;
  min-width: 28px;
  min-height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 6px;
  color: #08732f;
  background: rgba(255, 255, 255, 0.9);
  font-size: 10.5px;
  font-weight: 900;
  white-space: nowrap;
}

.admin-dashboard .shortcut-card .icon {
  min-width: 36px;
  width: 36px;
  height: 36px;
  color: #08732f;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(8, 127, 54, 0.1), 0 8px 16px rgba(0, 75, 36, 0.12);
}

.admin-dashboard .shortcut-card .icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.admin-dashboard .admin-command-center,
.admin-dashboard .ops-panel {
  border: 1px solid var(--admin-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--admin-shadow);
}

.admin-dashboard .admin-command-center {
  display: grid;
  gap: 12px;
  margin-top: 10px;
  padding: 14px;
}

.admin-dashboard .command-header,
.admin-dashboard .panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.admin-dashboard .command-header span,
.admin-dashboard .panel-head span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  color: #08732f;
  background: #dff7e5;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.admin-dashboard .command-header h2,
.admin-dashboard .panel-head h2 {
  margin: 2px 0 0;
  color: #0b5930;
  font-size: 21px;
  line-height: 1.2;
}

.admin-dashboard .command-header a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: #ffffff;
  background: var(--admin-card-green);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(20, 107, 64, 0.12);
}

.admin-dashboard .admin-smart-search {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid rgba(8, 127, 54, 0.18);
  border-radius: 10px;
  padding: 0 12px;
  background: #f7fff8;
}

.admin-dashboard .admin-smart-search svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #08732f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.admin-dashboard .admin-smart-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #23382d;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
}

.admin-dashboard .admin-smart-search kbd {
  display: inline-flex;
  min-width: 52px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 127, 54, 0.18);
  border-radius: 8px;
  color: #08732f;
  background: #ffffff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
}

.admin-dashboard .ops-command-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.admin-dashboard .ops-command-list a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 127, 54, 0.16);
  border-radius: 8px;
  padding: 8px;
  color: #08732f;
  background: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.admin-dashboard .ops-command-list a:hover,
.admin-dashboard .ops-command-list a.is-match {
  transform: translateY(-2px);
  color: #ffffff;
  background: #08732f;
}

.admin-dashboard .ops-command-list.is-searching a:not(.is-match) {
  opacity: 0.34;
}

.admin-dashboard .ops-flow-board {
  display: grid;
  grid-template-columns: minmax(190px, 0.46fr) minmax(0, 1fr);
  gap: 12px;
  margin-top: 10px;
  border: 1px solid var(--admin-border);
  border-radius: 10px;
  padding: 12px;
  background:
    radial-gradient(circle at 92% 0%, rgba(167, 232, 112, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--admin-shadow);
}

.admin-dashboard .flow-head {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

.admin-dashboard .flow-head span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  color: #08732f;
  background: #dff7e5;
  font-size: 12px;
  font-weight: 900;
}

.admin-dashboard .flow-head h2 {
  margin: 4px 0 0;
  color: #0b5930;
  font-size: 19px;
  line-height: 1.2;
}

.admin-dashboard .flow-head a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 11px;
  color: #ffffff;
  background: var(--admin-card-green);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(20, 107, 64, 0.12);
  white-space: nowrap;
}

.admin-dashboard .flow-lanes {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.admin-dashboard .flow-lanes a {
  display: grid;
  gap: 6px;
  min-height: 76px;
  border: 1px solid rgba(8, 127, 54, 0.14);
  border-radius: 10px;
  padding: 11px;
  color: #173b2b;
  background: #f7fff8;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.admin-dashboard .flow-lanes a:hover,
.admin-dashboard .flow-lanes a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(8, 127, 54, 0.28);
  box-shadow: 0 14px 26px rgba(20, 107, 64, 0.12);
}

.admin-dashboard .flow-lanes b {
  color: #08732f;
  font-size: 22px;
  line-height: 1;
}

.admin-dashboard .flow-lanes span {
  color: #4c6758;
  font-size: 13px;
  font-weight: 900;
}

.admin-dashboard .flow-lanes i {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e1f3e6;
}

.admin-dashboard .flow-lanes i::before {
  content: "";
  display: block;
  width: var(--flow, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #08732f, #18b56d);
}

.admin-dashboard .ops-metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.admin-dashboard .ops-metric {
  position: relative;
  overflow: hidden;
  min-height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 12px;
  color: #ffffff;
  background: var(--admin-card-green);
  box-shadow: 0 12px 24px rgba(20, 107, 64, 0.14);
}

.admin-dashboard .ops-metric::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -28px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.admin-dashboard .ops-metric.danger {
  background: linear-gradient(135deg, #8b2e2e 0%, #0a8a3d 100%);
}

.admin-dashboard .ops-metric span,
.admin-dashboard .ops-metric em,
.admin-dashboard .ops-metric strong {
  position: relative;
  z-index: 1;
  display: block;
}

.admin-dashboard .ops-metric span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 900;
}

.admin-dashboard .ops-metric strong {
  margin: 5px 0 2px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
}

.admin-dashboard .ops-metric em {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.admin-dashboard .admin-ops-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.admin-dashboard .ops-panel {
  padding: 14px;
}

.admin-dashboard .risk-list,
.admin-dashboard .sla-list,
.admin-dashboard .team-load {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.admin-dashboard .risk-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 9px;
  padding: 10px;
  background: #f4fff5;
}

.admin-dashboard .risk-list b {
  color: #23382d;
  font-size: 14px;
}

.admin-dashboard .risk-list span {
  color: #5c7668;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.admin-dashboard .sla-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 10px;
  align-items: center;
}

.admin-dashboard .sla-row span {
  color: #263c31;
  font-size: 14px;
  font-weight: 900;
}

.admin-dashboard .sla-row b {
  color: #08732f;
  font-size: 14px;
}

.admin-dashboard .sla-row i {
  grid-column: 1 / -1;
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e1f3e6;
}

.admin-dashboard .sla-row i::before {
  content: "";
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #08732f, #16b56a);
}

.admin-dashboard .team-load > div {
  display: grid;
  grid-template-columns: 98px 1fr 42px;
  gap: 9px;
  align-items: center;
}

.admin-dashboard .team-load strong {
  color: #263c31;
  font-size: 13px;
  white-space: nowrap;
}

.admin-dashboard .team-load span {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e1f3e6;
}

.admin-dashboard .team-load span::before {
  content: "";
  display: block;
  width: var(--load);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #08732f, #17b56c);
}

.admin-dashboard .team-load em {
  color: #08732f;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.admin-dashboard .automation-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.admin-dashboard .automation-list span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(8, 127, 54, 0.16);
  border-radius: 999px;
  padding: 0 11px;
  color: #08732f;
  background: #f7fff8;
  font-size: 13px;
  font-weight: 900;
}

.admin-dashboard .sidebar-menu {
  position: relative;
  padding-top: 8px;
}

.admin-dashboard .menu-group {
  position: relative;
}

.admin-dashboard .sidebar-menu a {
  min-height: 42px;
  padding-inline: 12px;
  white-space: nowrap;
}

.admin-dashboard .sidebar-menu span {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
}

.admin-dashboard .menu-label {
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
}

.admin-dashboard .submenu-caret {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.72;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.admin-dashboard .menu-group:hover .submenu-caret,
.admin-dashboard .menu-group:focus-within .submenu-caret {
  transform: rotate(225deg);
}

.admin-dashboard .submenu {
  max-height: 0;
  margin: 0 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: max-height 0.24s ease, margin 0.24s ease, padding 0.24s ease, opacity 0.18s ease, transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.admin-dashboard .menu-group:hover .submenu,
.admin-dashboard .menu-group:focus-within .submenu {
  max-height: 520px;
  margin: 4px 10px 8px;
  border-color: rgba(8, 127, 54, 0.14);
  padding: 8px;
  opacity: 1;
  box-shadow: 0 14px 28px rgba(20, 107, 64, 0.12);
  transform: translateY(0);
}

.admin-dashboard .submenu a {
  min-height: 36px;
  gap: 9px;
  border: 0;
  border-radius: 10px;
  padding: 0 10px;
  color: #234335;
  background: transparent;
  box-shadow: none;
  font-size: 14px;
  line-height: 1.25;
}

.admin-dashboard .submenu a::before {
  display: none;
}

.admin-dashboard .submenu a::after {
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.58;
  transform: rotate(-45deg);
  transition: opacity 0.18s ease, transform 0.18s ease;
  content: "";
}

.admin-dashboard .submenu a:hover,
.admin-dashboard .submenu a:focus-visible {
  color: #08732f;
  background: #effbf2;
}

.admin-dashboard .submenu a:hover::after,
.admin-dashboard .submenu a:focus-visible::after {
  opacity: 1;
  transform: translateX(2px) rotate(-45deg);
}

.admin-dashboard .submenu .submenu-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-color: rgba(8, 127, 54, 0.14);
  color: #08732f;
  background: #e3f8e7;
  box-shadow: none;
}

.admin-dashboard .submenu .submenu-icon svg {
  width: 16px;
  height: 16px;
}

.admin-dashboard.sidebar-collapsed .dashboard-sidebar {
  width: 76px;
  overflow: hidden;
}

.admin-dashboard.sidebar-collapsed .dashboard-shell {
  margin-left: 76px;
}

.admin-dashboard.sidebar-collapsed .sidebar-title {
  justify-content: center;
  padding-left: 0;
}

.admin-dashboard.sidebar-collapsed .sidebar-logo {
  width: 48px;
}

.admin-dashboard.sidebar-collapsed .sidebar-logo img {
  width: 42px;
  height: 42px;
}

.admin-dashboard.sidebar-collapsed .sidebar-menu a {
  justify-content: center;
  gap: 0;
  padding-inline: 0;
  color: transparent;
  font-size: 0;
}

.admin-dashboard.sidebar-collapsed .menu-label,
.admin-dashboard.sidebar-collapsed .submenu-caret {
  display: none;
}

.admin-dashboard.sidebar-collapsed .sidebar-menu a::before {
  left: 4px;
}

.admin-dashboard.sidebar-collapsed .sidebar-menu span {
  margin: 0;
}

.admin-dashboard.sidebar-collapsed .submenu a {
  justify-content: center;
  gap: 0;
  padding: 0;
  color: transparent;
  font-size: 0;
}

.admin-dashboard.sidebar-collapsed .submenu a:hover,
.admin-dashboard.sidebar-collapsed .submenu a:focus-visible {
  color: transparent;
}

.admin-dashboard.sidebar-collapsed .submenu a::after {
  display: none;
}

.admin-dashboard.sidebar-collapsed .submenu {
  margin-inline: 8px;
  padding-inline: 0;
}

.admin-dashboard.sidebar-collapsed .menu-group:hover .submenu,
.admin-dashboard.sidebar-collapsed .menu-group:focus-within .submenu {
  margin: 4px 8px 8px;
  padding: 7px 0;
}

.admin-dashboard.sidebar-collapsed .submenu .submenu-icon {
  margin: 0;
}

.admin-dashboard .submenu a.active {
  color: #08732f;
  background: #effbf2;
  font-weight: 800;
}

.admin-subpage .dashboard-content {
  padding: 14px 16px 22px;
}

.admin-subpage .admin-page-hero {
  display: none;
}

.admin-subpage .metric-grid {
  margin-top: 0;
}

.admin-page-hero,
.admin-panel,
.metric-card,
.report-filter-bar {
  border: 1px solid rgba(8, 127, 54, 0.14);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(20, 107, 64, 0.1);
}

.admin-page-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 136px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.24) 0 72px, transparent 74px),
    linear-gradient(135deg, #08732f 0%, #087f36 54%, #0a8a3d 100%);
}

.admin-page-hero::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  content: "";
}

.admin-page-hero > * {
  position: relative;
  z-index: 1;
}

.admin-page-kicker {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 800;
}

.admin-page-hero h1 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.admin-page-hero p:not(.admin-page-kicker) {
  max-width: 640px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.admin-page-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-page-actions a,
.report-filter-bar button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 9px;
  padding: 0 14px;
  color: #08732f;
  background: #ffffff;
  font-weight: 800;
  white-space: nowrap;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.metric-card {
  display: grid;
  min-height: 122px;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
}

.metric-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #08732f;
  background: #e3f8e7;
}

.metric-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.metric-card small {
  display: block;
  color: #607669;
  font-weight: 800;
}

.metric-card strong {
  display: block;
  margin-top: 2px;
  color: #0a6f34;
  font-size: 28px;
  line-height: 1;
}

.metric-card p {
  margin: 6px 0 0;
  color: #6a7d71;
  font-size: 13px;
  line-height: 1.35;
}

.admin-two-col,
.admin-three-col {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.admin-two-col {
  grid-template-columns: 1.25fr 0.75fr;
}

.admin-three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-panel {
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.panel-heading h2,
.panel-heading h3 {
  margin: 0;
  color: #173b2b;
}

.panel-heading p {
  margin: 4px 0 0;
  color: #6a7d71;
}

.status-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: #08732f;
  background: #e3f8e7;
  font-size: 13px;
  font-weight: 800;
}

.activity-list,
.task-list,
.progress-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.activity-list li,
.task-list li,
.progress-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 10px;
  background: #f4fff5;
}

.activity-list svg,
.task-list svg,
.progress-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: #08732f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 10px;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid #e5f1e8;
  padding: 10px;
  text-align: left;
}

.admin-table th {
  color: #335545;
  background: #effbf2;
  font-weight: 900;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.report-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.94);
}

.report-filter-bar button {
  border-color: #d1ecd8;
  color: #08732f;
  background: #effbf2;
}

.chart-panel {
  min-height: 280px;
}

.chart-bars {
  display: grid;
  min-height: 210px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  padding-top: 22px;
}

.chart-bar {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.chart-bar span {
  display: block;
  width: 100%;
  max-width: 34px;
  min-height: 32px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #0a8a3d, #08732f);
  box-shadow: 0 10px 20px rgba(20, 107, 64, 0.16);
}

.chart-bar strong {
  color: #476353;
  font-size: 13px;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  color: #607669;
  font-size: 13px;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chart-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #08732f;
}

.upload-ready-note {
  margin-top: 12px;
  border: 1px dashed rgba(8, 127, 54, 0.24);
  border-radius: 12px;
  padding: 12px;
  color: #476353;
  background: #f4fff5;
  font-size: 14px;
}

.order-workspace .dashboard-content {
  display: grid;
  gap: 10px;
}

.order-page-hero {
  min-height: 108px;
  padding: 15px 16px;
  background:
    radial-gradient(circle at 86% -8%, rgba(255, 255, 255, 0.2) 0 62px, transparent 64px),
    linear-gradient(135deg, #06642a 0%, #087f36 58%, #0a9a46 100%);
}

.order-hero-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border-radius: 16px;
  color: #08732f;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 26px rgba(0, 63, 31, 0.16);
}

.order-hero-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.order-hero-copy {
  flex: 1;
}

.order-chip-row,
.order-filter-row,
.order-action-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.order-chip-row {
  margin-top: 8px;
}

.order-chip-row span,
.order-filter-row span {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: #08732f;
  background: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
}

.order-command-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
}

.order-command-panel {
  display: grid;
  align-content: start;
  gap: 10px;
}

.order-filter-row span {
  border: 1px solid rgba(8, 127, 54, 0.12);
  background: #effbf2;
}

.order-smart-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.order-smart-search input {
  min-height: 38px;
  border: 1px solid rgba(8, 127, 54, 0.18);
  border-radius: 12px;
  padding: 0 14px;
  color: #173b2b;
  background: #f8fff9;
  outline: none;
}

.order-smart-search button,
.order-action-stack button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  padding: 0 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #08732f, #0a8a3d);
  box-shadow: 0 12px 24px rgba(20, 107, 64, 0.16);
  cursor: pointer;
}

.order-action-stack button {
  flex: 1 1 180px;
}

.order-smart-search svg,
.order-action-stack svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.order-pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-pipeline li {
  position: relative;
  display: grid;
  min-height: 70px;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(8, 127, 54, 0.13);
  border-radius: 14px;
  padding: 10px;
  background: linear-gradient(180deg, #f7fff8, #e6f8ea);
}

.order-pipeline li::after {
  position: absolute;
  top: 50%;
  right: -11px;
  z-index: 1;
  width: 20px;
  height: 2px;
  background: rgba(8, 127, 54, 0.22);
  content: "";
}

.order-pipeline li:last-child::after {
  display: none;
}

.order-pipeline b {
  color: #0a8a3d;
  font-size: 13px;
}

.order-pipeline span {
  color: #173b2b;
  font-weight: 900;
}

.order-table-wrap {
  overflow: auto;
  border: 1px solid rgba(8, 127, 54, 0.12);
  border-radius: 12px;
}

.order-table-wrap .admin-table {
  min-width: 760px;
}

.order-table-wrap .status-cell {
  color: #08732f;
  font-weight: 900;
}

.order-insight-card {
  display: grid;
  gap: 10px;
  border-radius: 14px;
  padding: 14px;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.18) 0 42px, transparent 44px),
    linear-gradient(135deg, #08732f, #0a8a3d);
}

.order-insight-card strong {
  font-size: 18px;
}

.order-insight-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.order-alert-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-alert-list li {
  display: flex;
  gap: 9px;
  align-items: center;
  border-radius: 12px;
  padding: 10px;
  color: #284939;
  background: #f4fff5;
}

.order-alert-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: #08732f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.order-data-note {
  border: 1px dashed rgba(8, 127, 54, 0.24);
  border-radius: 14px;
  padding: 12px;
  color: #476353;
  background: #f7fff8;
  font-size: 14px;
}

.new-order-cockpit {
  --order-green: #087f36;
  --order-deep: #0b5f2d;
  --order-mint: #effbf2;
  --order-line: rgba(8, 127, 54, 0.13);
}

.new-order-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 190px) minmax(150px, 190px);
  gap: 10px;
  align-items: stretch;
  overflow: hidden;
  min-height: 110px;
  padding: 14px 16px;
  background:
    radial-gradient(circle at 90% 0%, rgba(174, 234, 190, 0.62) 0 78px, transparent 80px),
    linear-gradient(135deg, #f8fff9 0%, #e4f7e9 54%, #d5f0dc 100%);
}

.new-order-hero::before {
  position: absolute;
  inset: 0;
  border-top: 4px solid rgba(8, 127, 54, 0.86);
  content: "";
  pointer-events: none;
}

.new-order-hero-copy {
  display: grid;
  align-content: center;
  gap: 5px;
  min-width: 0;
}

.new-order-hero h1 {
  margin: 0;
  color: #173b2b;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.new-order-hero p:not(.admin-page-kicker) {
  max-width: 680px;
  margin: 0;
  color: #587467;
  font-size: 16px;
}

.new-order-live-card {
  display: grid;
  align-content: center;
  gap: 5px;
  border: 1px solid rgba(8, 127, 54, 0.12);
  border-radius: 15px;
  padding: 12px;
  color: #173b2b;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.new-order-live-card span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #50705f;
  font-size: 13px;
  font-weight: 800;
}

.new-order-live-card strong {
  color: var(--order-green);
  font-size: 32px;
  line-height: 1;
}

.new-order-live-card small {
  color: #5f786b;
  font-weight: 700;
}

.new-order-live-card.accent strong {
  color: #b55b19;
}

.new-order-live-card svg,
.new-order-signal svg,
.new-order-search svg,
.order-row-icon svg,
.new-order-check-grid svg,
.new-order-actions svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.new-order-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.new-order-signal {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--order-line);
  border-radius: 15px;
  padding: 10px 12px;
  color: #173b2b;
  background: linear-gradient(180deg, #ffffff, #f1fbf4);
  box-shadow: 0 14px 30px rgba(10, 100, 54, 0.07);
}

.new-order-signal svg {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  padding: 10px;
  color: var(--order-green);
  background: #dff8e6;
}

.new-order-signal span {
  color: #587467;
  font-size: 13px;
  font-weight: 800;
}

.new-order-signal strong {
  color: #0b5f2d;
  font-size: 23px;
}

.new-order-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: 10px;
  align-items: start;
}

.new-order-queue,
.new-order-detail {
  display: grid;
  gap: 10px;
}

.new-order-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.new-order-search {
  display: flex;
  min-width: 0;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(8, 127, 54, 0.16);
  border-radius: 12px;
  padding: 0 11px;
  color: var(--order-green);
  background: #f7fff8;
}

.new-order-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  color: #173b2b;
  background: transparent;
  outline: none;
}

.new-order-toolbar button,
.new-order-tabs button,
.new-order-actions button {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.new-order-toolbar > button {
  min-height: 38px;
  border-radius: 12px;
  padding: 0 14px;
  color: #ffffff;
  background: var(--order-green);
  font-weight: 900;
}

.new-order-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.new-order-tabs button {
  min-height: 30px;
  border: 1px solid var(--order-line);
  border-radius: 999px;
  padding: 0 12px;
  color: #416351;
  background: #f8fff9;
  font-weight: 800;
}

.new-order-tabs button.is-active {
  color: #ffffff;
  background: var(--order-green);
}

.new-order-list {
  display: grid;
  gap: 8px;
  max-height: 400px;
  overflow: auto;
  padding-right: 4px;
  scrollbar-color: #0a8a3d #e9f8ed;
}

.new-order-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--order-line);
  border-radius: 14px;
  padding: 10px;
  color: #173b2b;
  text-align: left;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(10, 100, 54, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.new-order-item:hover,
.new-order-item.is-active {
  border-color: rgba(8, 127, 54, 0.48);
  box-shadow: 0 16px 34px rgba(8, 127, 54, 0.14);
  transform: translateY(-1px);
}

.order-row-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--order-green);
  background: #dcf8e4;
}

.order-row-icon.amber {
  color: #b55b19;
  background: #fff0d9;
}

.order-row-icon.danger {
  color: #b83232;
  background: #ffe4e4;
}

.order-row-icon.blue {
  color: #1674a6;
  background: #e0f3ff;
}

.new-order-item strong,
.new-order-item small,
.order-row-meta b,
.order-row-meta em {
  display: block;
}

.new-order-item strong {
  font-size: 17px;
}

.new-order-item small,
.order-row-meta em {
  color: #667d70;
  font-size: 13px;
  font-style: normal;
}

.order-row-meta {
  text-align: right;
}

.order-row-meta b {
  color: #0b5f2d;
  font-size: 15px;
}

.new-order-detail {
  position: sticky;
  top: 82px;
}

.new-order-detail-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 10px;
  align-items: center;
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(135deg, #effbf2, #ffffff);
}

.new-order-detail-head small,
.new-order-facts dt {
  color: #657e71;
  font-size: 12px;
  font-weight: 800;
}

.new-order-detail-head strong {
  display: block;
  color: #173b2b;
  font-size: 24px;
}

.risk-ring {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  justify-self: end;
  border-radius: 999px;
  color: #0b5f2d;
  background:
    radial-gradient(circle at center, #ffffff 0 52%, transparent 54%),
    conic-gradient(#0a8a3d var(--risk, 18%), #dcefe2 0);
}

.risk-ring span,
.risk-ring small {
  grid-area: 1 / 1;
}

.risk-ring span {
  margin-top: -12px;
  font-size: 22px;
  font-weight: 900;
}

.risk-ring small {
  margin-top: 34px;
  color: #5f786b;
  font-size: 11px;
  font-weight: 900;
}

.new-order-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.new-order-facts div {
  min-width: 0;
  border: 1px solid var(--order-line);
  border-radius: 12px;
  padding: 9px 10px;
  background: #f9fffa;
}

.new-order-facts dt,
.new-order-facts dd {
  margin: 0;
}

.new-order-facts dd {
  margin-top: 3px;
  color: #173b2b;
  font-weight: 900;
}

.new-order-check-grid {
  display: grid;
  gap: 8px;
}

.new-order-check-grid span {
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 12px;
  padding: 10px;
  color: #0b5f2d;
  background: #effbf2;
  font-weight: 900;
}

.new-order-note {
  border: 1px dashed rgba(8, 127, 54, 0.26);
  border-radius: 14px;
  padding: 12px;
  background: #f8fff9;
}

.new-order-note strong {
  color: #0b5f2d;
}

.new-order-note p {
  margin: 5px 0 0;
  color: #587467;
}

.new-order-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.new-order-actions button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 0 10px;
  color: #ffffff;
  background: var(--order-green);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(8, 127, 54, 0.16);
}

.new-order-actions button.ghost {
  grid-column: 1 / -1;
  color: #0b5f2d;
  background: #eaf8ee;
  box-shadow: none;
}

.new-order-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.new-order-lanes article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--order-line);
  border-radius: 15px;
  padding: 13px;
  background: linear-gradient(180deg, #ffffff, #effbf2);
}

.new-order-lanes span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--order-green);
  font-weight: 900;
}

.new-order-lanes strong {
  display: block;
  margin-top: 10px;
  color: #173b2b;
  font-size: 18px;
}

.new-order-lanes p {
  margin: 5px 0 0;
  color: #61796c;
  font-size: 14px;
}

.product-workspace-main {
  display: grid;
  gap: 10px;
}

.product-page-hero {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) minmax(220px, 320px);
  gap: 12px;
  align-items: center;
  overflow: hidden;
  min-height: 112px;
  padding: 15px 16px;
  background:
    radial-gradient(circle at 93% -12%, rgba(171, 235, 187, 0.68) 0 88px, transparent 90px),
    linear-gradient(135deg, #fafffb 0%, #edf9f0 50%, #dff4e6 100%);
}

.product-page-hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #087f36, #16b35b);
  content: "";
}

.product-hero-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  color: #087f36;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(8, 127, 54, 0.12);
}

.product-hero-icon svg,
.product-action-stack svg,
.product-alert-list svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.product-hero-copy {
  min-width: 0;
}

.product-hero-copy h1 {
  margin: 0;
  color: #173b2b;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.05;
}

.product-hero-copy p:not(.admin-page-kicker) {
  max-width: 720px;
  margin: 6px 0 0;
  color: #5d7668;
}

.product-hero-badge {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(8, 127, 54, 0.13);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.76);
}

.product-hero-badge strong {
  color: #087f36;
  font-size: 18px;
}

.product-hero-badge span {
  color: #5d7668;
  font-size: 13px;
  font-weight: 800;
}

.product-command-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
}

.product-command-panel {
  display: grid;
  align-content: start;
  gap: 10px;
}

.product-smart-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.product-smart-search input {
  min-height: 38px;
  border: 1px solid rgba(8, 127, 54, 0.18);
  border-radius: 12px;
  padding: 0 14px;
  color: #173b2b;
  background: #f8fff9;
  outline: none;
}

.product-smart-search button,
.product-action-stack button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  padding: 0 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #087f36, #0d9b47);
  box-shadow: 0 12px 24px rgba(8, 127, 54, 0.16);
  cursor: pointer;
  font-family: inherit;
  font-weight: 900;
}

.product-filter-row,
.product-action-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-filter-row span {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  border: 1px solid rgba(8, 127, 54, 0.13);
  border-radius: 999px;
  padding: 0 11px;
  color: #087f36;
  background: #effbf2;
  font-size: 12px;
  font-weight: 900;
}

.product-pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-pipeline li {
  position: relative;
  display: grid;
  min-height: 70px;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(8, 127, 54, 0.13);
  border-radius: 14px;
  padding: 10px;
  background: linear-gradient(180deg, #ffffff, #effbf2);
}

.product-pipeline li::after {
  position: absolute;
  top: 50%;
  right: -11px;
  z-index: 1;
  width: 20px;
  height: 2px;
  background: rgba(8, 127, 54, 0.22);
  content: "";
}

.product-pipeline li:last-child::after {
  display: none;
}

.product-pipeline b {
  color: #0a8a3d;
  font-size: 13px;
}

.product-pipeline span {
  color: #173b2b;
  font-weight: 900;
}

.product-table-wrap {
  overflow: auto;
  border: 1px solid rgba(8, 127, 54, 0.12);
  border-radius: 12px;
}

.product-table-wrap .admin-table {
  min-width: 760px;
}

.product-table-wrap .status-cell {
  color: #08732f;
  font-weight: 900;
}

.product-insight-card {
  display: grid;
  gap: 10px;
  border-radius: 14px;
  padding: 14px;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.18) 0 44px, transparent 46px),
    linear-gradient(135deg, #08732f, #0a8a3d);
}

.product-insight-card strong {
  font-size: 18px;
}

.product-insight-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.product-action-stack button {
  flex: 1 1 170px;
}

.product-action-stack svg {
  width: 18px;
  height: 18px;
}

.product-alert-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-alert-list li {
  display: flex;
  gap: 9px;
  align-items: center;
  border-radius: 12px;
  padding: 10px;
  color: #284939;
  background: #f4fff5;
}

.product-alert-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: #087f36;
}

.product-data-note {
  border: 1px dashed rgba(8, 127, 54, 0.24);
  border-radius: 14px;
  padding: 12px;
  color: #476353;
  background: #f7fff8;
  font-size: 14px;
}

.product-data-note strong {
  color: #0b5f2d;
}

.product-category-link-panel {
  display: grid;
  gap: 12px;
  border-color: rgba(8, 127, 54, 0.14);
  background:
    radial-gradient(circle at 94% 10%, rgba(43, 181, 101, 0.12) 0 76px, transparent 78px),
    linear-gradient(135deg, #ffffff 0%, #f3fff6 100%);
}

.product-category-link-panel.compact {
  gap: 10px;
}

.category-relation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.category-relation-grid article {
  display: grid;
  gap: 6px;
  min-height: 118px;
  border: 1px solid rgba(8, 127, 54, 0.13);
  border-radius: 14px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.category-relation-grid span {
  width: max-content;
  border-radius: 999px;
  padding: 4px 9px;
  color: #087f36;
  background: #e7f9ec;
  font-size: 12px;
  font-weight: 900;
}

.category-relation-grid strong {
  color: #173b2b;
  font-size: 18px;
}

.category-relation-grid p {
  margin: 0;
  color: #5d7668;
  font-size: 14px;
}

.relation-flow {
  display: grid;
  grid-template-columns: max-content 1fr max-content 1fr max-content 1fr max-content;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(8, 127, 54, 0.1);
  border-radius: 14px;
  padding: 10px;
  background: #f8fff9;
}

.relation-flow span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 12px;
  color: #087f36;
  background: #ffffff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(8, 127, 54, 0.08);
}

.relation-flow i {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(8, 127, 54, 0.18), rgba(8, 127, 54, 0.62));
}

.product-add-form-panel {
  display: grid;
  gap: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(8, 127, 54, 0.08) 0 86px, transparent 88px),
    #ffffff;
}

.product-entry-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 12px;
  align-items: start;
}

.product-entry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-entry-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: #294a39;
  font-size: 13px;
  font-weight: 900;
}

.product-entry-form label.wide {
  grid-column: 1 / -1;
}

.product-entry-form input,
.product-entry-form select,
.product-entry-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(8, 127, 54, 0.16);
  border-radius: 12px;
  padding: 10px 12px;
  color: #173b2b;
  background: #f8fff9;
  outline: 0;
  font-family: inherit;
  font-size: 14px;
}

.product-entry-form textarea {
  resize: vertical;
}

.product-entry-form input:focus,
.product-entry-form select:focus,
.product-entry-form textarea:focus {
  border-color: rgba(8, 127, 54, 0.48);
  box-shadow: 0 0 0 4px rgba(8, 127, 54, 0.08);
}

.product-form-actions {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 9px;
}

.product-form-actions button {
  min-height: 40px;
  border: 0;
  border-radius: 12px;
  padding: 0 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #087f36, #0d9b47);
  box-shadow: 0 12px 24px rgba(8, 127, 54, 0.16);
  cursor: pointer;
  font-family: inherit;
  font-weight: 900;
}

.product-form-actions button[type="button"] {
  color: #087f36;
  background: #effbf2;
  box-shadow: none;
}

.product-form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: #5d7668;
  font-size: 13px;
  font-weight: 800;
}

.product-form-status.is-success {
  color: #087f36;
}

.product-form-status.is-warning {
  color: #a05a00;
}

.product-form-guide {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(8, 127, 54, 0.12);
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(180deg, #f4fff5, #ffffff);
}

.product-form-guide strong {
  color: #087f36;
  font-size: 17px;
}

.product-form-guide ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-form-guide li {
  position: relative;
  padding-left: 18px;
  color: #4e6b5a;
  font-size: 14px;
}

.product-form-guide li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #087f36;
  content: "";
}

.category-workspace-main {
  display: grid;
  gap: 10px;
}

.category-page-hero {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) minmax(220px, 320px);
  gap: 12px;
  align-items: center;
  overflow: hidden;
  min-height: 112px;
  padding: 15px 16px;
  background:
    radial-gradient(circle at 88% 0%, rgba(8, 127, 54, 0.1) 0 96px, transparent 98px),
    linear-gradient(135deg, #fbfffc 0%, #eefaf2 52%, #e0f6e7 100%);
}

.category-page-hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #0a8a3d, #8bdc65);
  content: "";
}

.category-hero-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  color: #087f36;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(8, 127, 54, 0.12);
}

.category-hero-icon svg,
.category-action-stack svg,
.category-alert-list svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.category-hero-copy {
  min-width: 0;
}

.category-hero-copy h1 {
  margin: 0;
  color: #173b2b;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.05;
}

.category-hero-copy p:not(.admin-page-kicker) {
  max-width: 720px;
  margin: 6px 0 0;
  color: #5d7668;
}

.category-hero-badge {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(8, 127, 54, 0.13);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.78);
}

.category-hero-badge strong {
  color: #087f36;
  font-size: 18px;
}

.category-hero-badge span {
  color: #5d7668;
  font-size: 13px;
  font-weight: 800;
}

.category-command-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 10px;
}

.category-command-panel {
  display: grid;
  align-content: start;
  gap: 10px;
}

.category-smart-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.category-smart-search input {
  min-height: 38px;
  border: 1px solid rgba(8, 127, 54, 0.18);
  border-radius: 12px;
  padding: 0 14px;
  color: #173b2b;
  background: #f8fff9;
  outline: none;
}

.category-smart-search button,
.category-action-stack button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  padding: 0 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #087f36, #0d9b47);
  box-shadow: 0 12px 24px rgba(8, 127, 54, 0.16);
  cursor: pointer;
  font-family: inherit;
  font-weight: 900;
}

.category-filter-row,
.category-action-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-filter-row span {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  border: 1px solid rgba(8, 127, 54, 0.13);
  border-radius: 999px;
  padding: 0 11px;
  color: #087f36;
  background: #effbf2;
  font-size: 12px;
  font-weight: 900;
}

.category-pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-pipeline li {
  position: relative;
  display: grid;
  min-height: 70px;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(8, 127, 54, 0.13);
  border-radius: 14px;
  padding: 10px;
  background: linear-gradient(180deg, #ffffff, #effbf2);
}

.category-pipeline li::after {
  position: absolute;
  top: 50%;
  right: -11px;
  z-index: 1;
  width: 20px;
  height: 2px;
  background: rgba(8, 127, 54, 0.22);
  content: "";
}

.category-pipeline li:last-child::after {
  display: none;
}

.category-pipeline b {
  color: #0a8a3d;
  font-size: 13px;
}

.category-pipeline span {
  color: #173b2b;
  font-weight: 900;
}

.category-table-wrap {
  overflow: auto;
  border: 1px solid rgba(8, 127, 54, 0.12);
  border-radius: 12px;
}

.category-table-wrap .admin-table {
  min-width: 760px;
}

.category-table-wrap .status-cell {
  color: #08732f;
  font-weight: 900;
}

.category-insight-card {
  display: grid;
  gap: 10px;
  border-radius: 14px;
  padding: 14px;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.18) 0 44px, transparent 46px),
    linear-gradient(135deg, #08732f, #0a8a3d);
}

.category-insight-card strong {
  font-size: 18px;
}

.category-insight-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.category-action-stack button {
  flex: 1 1 170px;
}

.category-action-stack svg {
  width: 18px;
  height: 18px;
}

.category-alert-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-alert-list li {
  display: flex;
  gap: 9px;
  align-items: center;
  border-radius: 12px;
  padding: 10px;
  color: #284939;
  background: #f4fff5;
}

.category-alert-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: #087f36;
}

.category-data-note {
  border: 1px dashed rgba(8, 127, 54, 0.24);
  border-radius: 14px;
  padding: 12px;
  color: #476353;
  background: #f7fff8;
  font-size: 14px;
}

.category-data-note strong {
  color: #0b5f2d;
}

@media (max-width: 1180px) {
  .product-page-hero {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .product-hero-badge {
    grid-column: 1 / -1;
  }

  .product-command-grid {
    grid-template-columns: 1fr;
  }

  .category-relation-grid {
    grid-template-columns: 1fr;
  }

  .product-entry-shell,
  .product-entry-form {
    grid-template-columns: 1fr;
  }

  .relation-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .relation-flow i {
    display: none;
  }

  .category-page-hero {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .category-hero-badge {
    grid-column: 1 / -1;
  }

  .category-command-grid {
    grid-template-columns: 1fr;
  }

  .product-pipeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-pipeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .product-page-hero,
  .product-smart-search,
  .category-page-hero,
  .category-smart-search {
    grid-template-columns: 1fr;
  }

  .product-hero-icon,
  .category-hero-icon {
    width: 52px;
    height: 52px;
  }

  .product-pipeline,
  .category-pipeline {
    grid-template-columns: 1fr;
  }

  .relation-flow {
    grid-template-columns: 1fr;
  }

  .product-pipeline li::after,
  .category-pipeline li::after {
    display: none;
  }
}

@media (max-width: 1180px) {
  .new-order-hero {
    grid-template-columns: minmax(0, 1fr) repeat(2, minmax(132px, 0.45fr));
  }

  .new-order-workbench {
    grid-template-columns: 1fr;
  }

  .new-order-detail {
    position: static;
  }
}

@media (max-width: 920px) {
  .new-order-hero,
  .new-order-signal-grid,
  .new-order-lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .new-order-hero-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .new-order-hero,
  .new-order-signal-grid,
  .new-order-lanes,
  .new-order-facts,
  .new-order-actions {
    grid-template-columns: 1fr;
  }

  .new-order-toolbar,
  .new-order-detail-head,
  .new-order-item {
    grid-template-columns: 1fr;
  }

  .new-order-toolbar > button,
  .new-order-actions button {
    width: 100%;
  }

  .order-row-meta {
    text-align: left;
  }

  .risk-ring {
    justify-self: start;
  }
}

@media (max-width: 1180px) {
  .admin-dashboard .dashboard-topbar {
    grid-template-columns: minmax(90px, 1fr) minmax(220px, 320px) minmax(150px, 1fr);
  }

  .admin-dashboard .shortcut-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .metric-grid,
  .admin-three-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-two-col {
    grid-template-columns: 1fr;
  }

  .admin-dashboard .topbar-context p {
    display: none;
  }

  .admin-dashboard .topbar-context-title strong {
    max-width: 220px;
  }

  .order-command-grid {
    grid-template-columns: 1fr;
  }

  .order-pipeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-dashboard .ops-command-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-dashboard .ops-flow-board {
    grid-template-columns: 1fr;
  }

  .admin-dashboard .ops-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-dashboard .flow-lanes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-dashboard .admin-ops-grid {
    grid-template-columns: 1fr;
  }

  .admin-dashboard .mission-control {
    grid-template-columns: 1fr auto;
  }

  .admin-dashboard .mission-mini-grid,
  .admin-dashboard .mission-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .admin-dashboard .dashboard-shell {
    margin-left: 0;
  }

  .admin-dashboard.sidebar-collapsed .dashboard-sidebar {
    width: 224px;
  }

  .admin-dashboard.sidebar-collapsed .dashboard-shell {
    margin-left: 0;
  }

  .admin-dashboard.sidebar-collapsed .sidebar-title {
    justify-content: flex-start;
    padding-left: 10px;
  }

  .admin-dashboard.sidebar-collapsed .sidebar-logo {
    width: 52px;
  }

  .admin-dashboard.sidebar-collapsed .sidebar-logo img {
    width: 46px;
    height: 46px;
  }

  .admin-dashboard.sidebar-collapsed .sidebar-menu a {
    justify-content: flex-start;
    gap: 11px;
    padding-inline: 12px;
    color: #35493e;
    font-size: 16px;
  }

  .admin-dashboard .sidebar-title {
    min-height: 64px;
  }

  .admin-dashboard .dashboard-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 66px;
  }

  .admin-dashboard .topbar-live-feed {
    display: none;
  }

  .admin-dashboard .topbar-context-title span,
  .admin-dashboard .topbar-context-chips {
    display: none;
  }

  .admin-dashboard .topbar-context-title strong {
    max-width: 44vw;
    font-size: 17px;
  }

  .admin-dashboard .dashboard-logo img {
    height: 50px;
  }

  .admin-page-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-page-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .admin-dashboard .dashboard-content {
    padding: 10px;
  }

  .admin-dashboard .dashboard-banner img {
    height: 142px;
  }

  .admin-dashboard .vendor-zone {
    padding: 15px 12px;
  }

  .admin-dashboard .shortcut-card {
    min-height: 86px;
  }

  .metric-grid,
  .admin-three-col {
    grid-template-columns: 1fr;
  }

  .admin-page-hero,
  .admin-panel {
    padding: 15px;
  }

  .order-page-hero {
    gap: 12px;
  }

  .order-hero-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .order-hero-icon svg {
    width: 30px;
    height: 30px;
  }

  .order-smart-search {
    grid-template-columns: 1fr;
  }

  .admin-dashboard .admin-command-center,
  .admin-dashboard .ops-panel {
    padding: 12px;
  }

  .admin-dashboard .topbar-report-menu,
  .admin-dashboard .topbar-profile-menu {
    display: none;
  }

  .admin-dashboard .command-header,
  .admin-dashboard .panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-dashboard .admin-smart-search {
    grid-template-columns: 20px 1fr;
  }

  .admin-dashboard .admin-smart-search kbd {
    display: none;
  }

  .admin-dashboard .ops-command-list,
  .admin-dashboard .ops-metrics,
  .admin-dashboard .flow-lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-dashboard .flow-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-dashboard .ops-metric {
    min-height: 88px;
  }

  .admin-dashboard .ops-metric strong {
    font-size: 24px;
  }

  .admin-dashboard .risk-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .admin-dashboard .risk-list span {
    text-align: left;
  }

  .admin-dashboard .team-load > div {
    grid-template-columns: 86px 1fr 38px;
  }

  .admin-dashboard .notice-ticker {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .admin-dashboard .notice-status-btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .admin-dashboard .mission-control {
    grid-template-columns: 1fr;
  }

  .admin-dashboard .mission-score {
    width: 82px;
    height: 82px;
    justify-self: start;
  }

  .admin-dashboard .mission-score strong {
    font-size: 22px;
  }

  .admin-dashboard .mission-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-dashboard .mission-actions {
    grid-template-columns: 1fr;
  }

  .order-pipeline {
    grid-template-columns: 1fr;
  }

  .order-pipeline li::after {
    display: none;
  }

  .admin-table {
    font-size: 13px;
  }
}
