:root {
  --ink: #050706;
  --panel: #0b100d;
  --panel-2: #10170f;
  --line: #2a3a2a;
  --text: #f6f7ef;
  --muted: #aab3a8;
  --lime: #caff54;
  --blue: #60b5ff;
  --amber: #ffc85b;
  --red: #ff6565;
  --green: #6ee78e;
  --paper: #f5f7f0;
  --paper-line: #dbe3d8;
  --paper-ink: #111611;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(202, 255, 84, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(202, 255, 84, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 64px 64px;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }

.app-shell {
  width: min(1580px, calc(100vw - 28px));
  margin: 0 auto;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(5, 7, 6, 0.98), rgba(5, 7, 6, 0.84));
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  gap: 4px;
}

.brand-mark {
  font-size: 24px;
  font-weight: 850;
}

.brand-sub {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.segmented {
  display: flex;
  border: 1px solid var(--line);
  background: rgba(11, 16, 13, 0.92);
  padding: 3px;
}

.segmented button, .ghost, .action, select {
  border: 1px solid var(--line);
  background: var(--panel-2);
  color: var(--text);
  padding: 10px 12px;
  min-height: 40px;
}

.segmented button {
  border: 0;
  color: var(--muted);
}

.segmented button.active {
  background: var(--lime);
  color: #10140c;
  font-weight: 800;
}

.ghost { color: var(--lime); }

.action {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
  font-weight: 850;
}

.action:disabled, .ghost:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.action.secondary {
  background: transparent;
  color: var(--lime);
}

.action.blue {
  background: var(--blue);
  border-color: var(--blue);
}

.action.warn {
  background: var(--amber);
  border-color: var(--amber);
}

.action.danger {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

main { padding: 8px 0 42px; }

.hero {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 18px;
  margin-bottom: 14px;
}

.hero.compact h1 {
  max-width: 760px;
}

.is-dispatcher .hero {
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: end;
  gap: 14px;
  margin-bottom: 10px;
}

.is-dispatcher .hero h1 {
  font-size: clamp(28px, 3.2vw, 42px);
  margin-bottom: 8px;
}

.is-dispatcher .hero p {
  margin-bottom: 0;
}

.dispatcher-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: end;
  gap: 14px;
  margin-bottom: 10px;
}

.dispatcher-topline h1 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
  margin-bottom: 8px;
}

.dispatcher-topline p {
  margin-bottom: 0;
}

.panel {
  background: rgba(11, 16, 13, 0.94);
  border: 1px solid var(--line);
  padding: 16px;
}

.section-gap { margin-top: 14px; }

.kicker {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  margin-bottom: 14px;
}

h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.muted { color: var(--muted); }

.grid {
  display: grid;
  gap: 14px;
}

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

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

.kpi {
  background: #09100b;
  border: 1px solid var(--line);
  padding: 12px;
  min-height: 78px;
}

.kpi.hot { border-color: var(--red); }

.kpi b {
  display: block;
  color: var(--lime);
  font-size: 28px;
}

.kpi span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.board-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.board-title strong {
  display: block;
  font-size: 18px;
}

.board-title span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.text-link {
  color: var(--lime);
  font-weight: 850;
  white-space: nowrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid currentColor;
  padding: 3px 7px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.inbox {
  margin-bottom: 14px;
  border-color: rgba(202, 255, 84, 0.35);
}

.task-list {
  display: grid;
  gap: 8px;
}

.task-card {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  background: #09100b;
  border: 1px solid var(--line);
  padding: 12px;
}

.task-card.critical { border-color: rgba(255, 101, 101, 0.7); }
.task-card.warn { border-color: rgba(255, 200, 91, 0.7); }

.task-card p {
  color: var(--muted);
  margin: 3px 0 0;
}

.task-actions {
  display: flex;
  justify-content: flex-end;
}

.board {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) 220px 250px;
  grid-template-rows: auto auto;
  gap: 10px;
  align-items: stretch;
}

.workers, .timeline, .map-card, .tray, .phone {
  background: var(--paper);
  color: var(--paper-ink);
  border: 1px solid var(--paper-line);
  padding: 14px;
}

.timeline { grid-column: 1; grid-row: 1; }
.workers { grid-column: 2; grid-row: 1; }
.map-card { grid-column: 3; grid-row: 1; }
.tray { grid-column: 1 / -1; grid-row: 2; }

.worker-row, .candidate, .log-row, .shift-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(17, 22, 17, 0.08);
}

.worker-row small {
  display: block;
  color: #647064;
  margin-top: 2px;
}

.worker-row.sick {
  background: #fff0f0;
  border: 1px solid rgba(255, 101, 101, 0.48);
  padding-left: 8px;
  padding-right: 8px;
}

.worker-row.replacement {
  background: #eef7ff;
  border: 1px solid rgba(96, 181, 255, 0.48);
  padding-left: 8px;
  padding-right: 8px;
}

.role-pill {
  color: #192319;
  font-weight: 900;
}

.worker-row:last-child, .candidate:last-child, .log-row:last-child, .shift-row:last-child { border-bottom: 0; }

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--lime);
}

.dot.blue { background: var(--blue); }
.dot.amber { background: var(--amber); }
.dot.red { background: var(--red); }
.dot.green { background: var(--green); }

.workers {
  max-height: 394px;
  overflow: auto;
}

.timeline { min-height: 394px; }

.hours {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  color: #687368;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 12px;
}

.lane {
  margin: 8px 0;
  padding: 10px;
  border: 2px solid var(--paper-line);
  background: #eef3ec;
  font-weight: 850;
}

.lane.needs { border-color: var(--red); }
.lane.planned { border-color: var(--amber); background: #fff8e8; }
.lane.ready { border-color: #54b96b; background: #ecfaef; }
.lane.problem { border-color: var(--red); background: #fff0f0; }

.lane span {
  color: #596459;
  font-size: 12px;
  margin-top: 2px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.chip {
  border: 1px solid #cdd7ca;
  background: white;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 800;
}

.chip small {
  display: block;
  color: #27618c;
  font-size: 10px;
  margin-top: 2px;
}

.chip.ok {
  border-color: #74bd82;
  background: #ecfaef;
}

.chip.pending {
  border-color: #e8bd5b;
  background: #fff8e8;
}

.chip.sick {
  border-color: rgba(255, 101, 101, 0.7);
  background: #fff0f0;
  color: #8f1f1f;
}

.chip.replacement {
  border-color: rgba(96, 181, 255, 0.75);
  background: #edf7ff;
  color: #0c355a;
}

.empty-chip {
  color: #697569;
  background: transparent;
}

.map-line, .map-stack {
  height: 136px;
  width: 100%;
  display: block;
}

.map-stack {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--paper-line);
  background: #e7ece4;
}

.map-stack.compact {
  height: 118px;
  margin: 8px 0;
}

.map-line {
  position: relative;
  border: 0;
  background:
    linear-gradient(90deg, rgba(219, 227, 216, 0.9) 1px, transparent 1px),
    linear-gradient(rgba(219, 227, 216, 0.9) 1px, transparent 1px),
    #fff;
  background-size: 34px 34px;
  overflow: hidden;
}

.map-stack .map-line,
.google-map-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.google-map-image {
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.map-stack.map-loaded .google-map-image {
  opacity: 1;
}

.map-note {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  color: #1c261c;
  border: 1px solid var(--paper-line);
  padding: 3px 6px;
  font-size: 11px;
  font-weight: 850;
}

.route {
  position: absolute;
  height: 4px;
  transform-origin: left center;
  border-radius: 99px;
}

.route.a {
  width: 230px;
  left: 18px;
  top: 112px;
  transform: rotate(-24deg);
  background: var(--blue);
}

.route.b {
  width: 190px;
  left: 38px;
  top: 48px;
  transform: rotate(31deg);
  background: var(--lime);
}

.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime);
  border: 3px solid white;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
}

.pin.main { left: 48%; top: 44%; background: var(--red); }
.pin.p1 { left: 19%; top: 61%; background: var(--blue); }
.pin.p2 { left: 72%; top: 28%; background: var(--lime); }
.pin.p3 { left: 79%; top: 68%; background: var(--amber); }

dl {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 4px 10px;
  font-size: 12px;
}

dt { color: #667066; font-weight: 800; }
dd { margin: 0; }

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

.candidate {
  background: white;
  border: 1px solid var(--paper-line);
  padding: 8px;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 6px;
}

.candidate span, .candidate small {
  color: #5d685d;
}

.candidate button { width: 100%; }

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

.phase-card {
  border: 1px solid var(--line);
  background: #09100b;
  padding: 12px;
}

.phase-card b {
  color: var(--lime);
  font-size: 26px;
  display: block;
}

.phase-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.phase-two {
  opacity: 0.82;
}

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

.phase-preview span {
  border: 1px dashed var(--line);
  padding: 10px;
  color: var(--muted);
  font-weight: 800;
}

.dispatcher-lower {
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) minmax(300px, 1fr) minmax(260px, 0.8fr) minmax(250px, 0.8fr);
  gap: 10px;
  margin-top: 10px;
}

.dispatcher-lower .section-gap {
  margin-top: 0;
}

.phase-one-grid {
  grid-template-columns: 1fr;
}

.activity-log.compact {
  max-height: 220px;
  overflow: auto;
}

.phone-wrap {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.phone {
  max-width: 390px;
  min-height: auto;
}

.phone-top, .split-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin: 12px 0;
}

.day {
  min-height: 44px;
  background: white;
  border: 1px solid var(--paper-line);
  display: grid;
  place-items: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 900;
}

.day .state {
  width: 100%;
  padding: 4px 0;
  text-align: center;
  background: var(--lime);
  color: #111611;
}

.day.sick .state, .day.blocked .state { background: var(--red); color: white; }
.day.shift .state { background: var(--blue); color: #06101a; }

.shift-card {
  background: white;
  border: 1px solid var(--paper-line);
  padding: 12px;
  margin: 10px 0 0;
}

.shift-card p,
.claim-panel p {
  margin-bottom: 8px;
}

.directions {
  display: inline-flex;
  margin: 4px 0 10px;
  color: #0a5fb5;
  font-weight: 850;
}

.responsible {
  border: 1px solid rgba(255, 101, 101, 0.45);
  background: #fff0f0;
  color: #8f1f1f;
  padding: 10px;
  font-weight: 800;
}

.decision-note {
  border: 1px solid rgba(202, 255, 84, 0.5);
  background: rgba(202, 255, 84, 0.08);
  color: var(--paper-ink);
  padding: 8px;
  font-size: 12px;
  font-weight: 800;
}

.claim-panel .decision-note {
  color: var(--text);
}

.claim-panel {
  border-color: var(--lime);
  box-shadow: 0 0 0 1px rgba(202, 255, 84, 0.12);
  color: var(--text);
}

.claim-panel h2,
.claim-panel p,
.claim-panel b {
  color: var(--text);
}

.actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.empty {
  padding: 14px;
  color: var(--muted);
  border: 1px dashed var(--line);
}

.empty.small {
  color: #607060;
  border-color: var(--paper-line);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: 360px;
  padding: 14px 16px;
  background: var(--lime);
  color: #111611;
  font-weight: 850;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 50;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.demo-cursor {
  position: fixed;
  left: -12px;
  top: -12px;
  width: 28px;
  height: 28px;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transition:
    transform 0.72s cubic-bezier(.2,.82,.21,1),
    opacity 0.18s ease;
}

.demo-cursor.show {
  opacity: 1;
}

.demo-cursor span {
  position: absolute;
  left: 4px;
  top: 3px;
  width: 0;
  height: 0;
  border-top: 22px solid var(--lime);
  border-right: 14px solid transparent;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.55));
  transform: rotate(-14deg);
}

.demo-cursor::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
}

.demo-cursor.clicking::after {
  animation: cursorClickRing 0.36s ease-out;
}

.demo-click-target {
  outline: 3px solid var(--lime) !important;
  outline-offset: 4px;
  box-shadow: 0 0 0 9px rgba(202, 255, 84, 0.22), 0 0 30px rgba(202, 255, 84, 0.45) !important;
  animation: demoTargetPulse 0.72s ease-in-out infinite alternate;
  position: relative;
  z-index: 65;
}

.demo-context-target {
  outline: 2px solid rgba(202, 255, 84, 0.5);
  outline-offset: 8px;
}

@keyframes demoTargetPulse {
  from { filter: brightness(1); }
  to { filter: brightness(1.18); }
}

@keyframes cursorClickRing {
  from { opacity: 0.95; transform: translate(-50%, -50%) scale(0.45); }
  to { opacity: 0; transform: translate(-50%, -50%) scale(3.2); }
}

.flow-drawer {
  position: fixed;
  right: 18px;
  top: 86px;
  bottom: 18px;
  width: min(430px, calc(100vw - 24px));
  background: rgba(11, 16, 13, 0.98);
  border: 1px solid rgba(202, 255, 84, 0.4);
  color: var(--text);
  padding: 16px;
  overflow: auto;
  transform: translateX(calc(100% + 28px));
  transition: transform 0.2s ease;
  z-index: 40;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.flow-drawer.open {
  transform: translateX(0);
}

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

.flow-head h2 {
  margin-bottom: 0;
}

.flow-close {
  flex: 0 0 auto;
}

.flow-controls {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.7fr;
  gap: 8px;
  margin-bottom: 12px;
}

.flow-controls button {
  width: 100%;
}

.next-step {
  border: 1px solid var(--lime);
  background: rgba(202, 255, 84, 0.08);
  padding: 12px;
  margin-bottom: 14px;
}

.next-step b {
  color: var(--lime);
  display: block;
  margin-bottom: 4px;
}

.flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.flow-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  border: 1px solid var(--line);
  background: #09100b;
  padding: 10px;
}

.flow-list li.active {
  border-color: var(--lime);
  background: rgba(202, 255, 84, 0.1);
}

.flow-list li.done {
  opacity: 0.62;
}

.flow-list li.done > span::after {
  content: " done";
  display: block;
  color: var(--green);
  font-size: 9px;
}

.flow-list li > span {
  color: var(--lime);
  font-weight: 900;
}

.flow-list p {
  margin: 4px 0 0;
  color: var(--muted);
}

@media (min-width: 1120px) {
  body.demo-flow-open .app-shell {
    width: min(1180px, calc(100vw - 430px));
    margin-left: 18px;
    margin-right: auto;
  }

  body.demo-flow-open .hero,
  body.demo-flow-open .dispatcher-topline,
  body.demo-flow-open .grid.two {
    grid-template-columns: 1fr;
  }

  body.demo-flow-open .kpis,
  body.demo-flow-open .phase-row,
  body.demo-flow-open .phase-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.demo-flow-open .dispatcher-lower {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.demo-flow-open .task-card {
    grid-template-columns: 14px minmax(0, 1fr);
  }

  body.demo-flow-open .task-actions {
    grid-column: 2;
    justify-content: flex-start;
  }

  body.demo-flow-open .board {
    grid-template-columns: minmax(430px, 1fr) 190px 210px;
  }

  body.demo-flow-open .candidate-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.demo-flow-open .phone-wrap {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  header {
    align-items: flex-start;
    position: static;
  }
  .brand-mark { font-size: 20px; }
  .hero, .dispatcher-topline, .grid.two, .phone-wrap, .phase-row, .phase-preview {
    grid-template-columns: 1fr;
  }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .board { grid-template-columns: 1fr; }
  .timeline,
  .workers,
  .map-card,
  .tray { grid-column: auto; grid-row: auto; }
  .dispatcher-lower { grid-template-columns: 1fr; }
  .workers { max-height: none; }
  .candidate-list { grid-template-columns: 1fr; }
  .map-card { order: 4; }
  .task-card {
    grid-template-columns: 14px minmax(0, 1fr);
  }
  .task-actions {
    grid-column: 2;
    justify-content: flex-start;
  }
  .flow-drawer {
    top: 12px;
    right: 12px;
    bottom: 12px;
  }
  .flow-controls {
    grid-template-columns: 1fr;
  }
  h1 { font-size: 38px; }
  .phone {
    max-width: none;
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .app-shell { width: min(100vw - 20px, 1220px); }
  header, .controls {
    display: grid;
    justify-content: stretch;
    gap: 7px;
    padding: 8px 0;
  }
  .brand-mark { font-size: 18px; }
  .brand-sub { font-size: 11px; }
  .is-worker #flow-toggle,
  .is-worker #run-demo,
  .is-worker #next-demo,
  .is-worker #demo-speed,
  .is-worker #reset-demo {
    display: none;
  }
  .segmented, .controls select, .ghost { width: 100%; }
  .segmented button { flex: 1; }
  .is-worker .hero {
    gap: 8px;
    margin-bottom: 8px;
  }
  .is-worker .hero h1 { font-size: 30px; margin-bottom: 8px; }
  .is-worker .hero p { margin-bottom: 0; }
  .kpis { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
  .kpi { min-height: 54px; padding: 7px; }
  .kpi b { font-size: 17px; }
  .kpi span { font-size: 10px; }
  .panel { padding: 12px; }
  .board-title {
    display: grid;
    align-items: start;
  }
  .phone-wrap { gap: 10px; }
  .phone { max-width: none; padding: 10px; }
  .phone-top h2 { font-size: 20px; margin-bottom: 0; }
  .calendar { gap: 4px; margin: 8px 0; }
  .day { min-height: 34px; font-size: 9px; }
  .day .state { padding: 2px 0; }
  .shift-card,
  .claim-panel { padding: 10px; }
  .shift-card p,
  .claim-panel p { font-size: 13px; line-height: 1.2; margin-bottom: 6px; }
  .claim-panel h2 { font-size: 21px; line-height: 1.06; }
  .map-stack.compact { height: 92px; }
  .decision-note { padding: 7px; font-size: 11px; line-height: 1.25; }
  .actions .action {
    flex: 1 1 0;
    min-width: 0;
    min-height: 38px;
    padding: 8px;
  }
  .is-worker .worker-side .activity-log,
  .is-worker .worker-side [data-demo="worker-phase-one"] {
    display: none;
  }
  .toast {
    top: 8px;
    right: 10px;
    bottom: auto;
    left: 10px;
    max-width: none;
    padding: 10px 12px;
    font-size: 13px;
  }
  .toast.show {
    transform: translateY(0);
  }
}
