:root {
  color-scheme: dark;
  --bg: #07090d;
  --panel: #0e1118;
  --panel-2: #141824;
  --panel-3: #1b2030;
  --border: #282e3e;
  --text: #f5f7fb;
  --muted: #929aab;
  --yellow: #ffdf00;
  --yellow-2: #ffb800;
  --purple: #9146ff;
  --green: #35df88;
  --red: #ff4d61;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at 82% 3%, rgba(255, 223, 0, 0.08), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

.is-hidden {
  display: none !important;
}

.topbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 11, 16, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 252px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 223, 0, 0.35);
  border-radius: 12px;
  background: rgba(255, 223, 0, 0.1);
  box-shadow: 0 0 28px rgba(255, 223, 0, 0.08);
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.live-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 24px;
  color: var(--muted);
  font-size: 0.82rem;
}

.connection-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: #6f7788;
  box-shadow: 0 0 0 4px rgba(111, 119, 136, 0.1);
}

.connection-dot.is-online {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(53, 223, 136, 0.1), 0 0 14px rgba(53, 223, 136, 0.45);
}

.presence-divider {
  width: 1px;
  height: 18px;
  margin: 0 4px;
  background: var(--border);
}

.button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: 160ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button:disabled,
.icon-button:disabled,
.tool-button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.button-primary {
  border-color: rgba(255, 223, 0, 0.45);
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  color: #141000;
  box-shadow: 0 7px 22px rgba(255, 200, 0, 0.13);
}

.button-muted {
  border-color: var(--border);
  background: var(--panel-2);
}

.button-muted:hover:not(:disabled) {
  border-color: #3d455b;
  background: var(--panel-3);
}

.button-ghost {
  border-color: transparent;
  background: transparent;
  color: var(--muted);
}

.button-danger {
  border-color: rgba(255, 77, 97, 0.4);
  background: var(--red);
  color: #fff;
}

.button-danger-outline {
  width: 100%;
  border-color: rgba(255, 77, 97, 0.35);
  background: rgba(255, 77, 97, 0.06);
  color: #ff7888;
}

.twitch-button {
  min-height: 48px;
  border-color: #a76dff;
  background: var(--purple);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 12px 35px rgba(145, 70, 255, 0.25);
}

.user-chip {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(20, 24, 36, 0.8);
}

.user-chip.compact {
  padding: 6px 10px 6px 7px;
}

.user-chip img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--panel-3);
}

.user-chip.compact img {
  width: 34px;
  height: 34px;
}

.user-chip span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.user-chip small {
  color: var(--muted);
  font-size: 0.66rem;
}

.user-chip strong {
  max-width: 150px;
  overflow: hidden;
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panel-page {
  height: 100vh;
  overflow: hidden;
}

.panel-layout {
  display: grid;
  height: calc(100vh - 68px);
  grid-template-columns: 278px minmax(0, 1fr);
}

.toolbar {
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow-y: auto;
  border-right: 1px solid var(--border);
  background: rgba(13, 16, 23, 0.92);
}

.tool-section {
  padding: 15px;
  border-bottom: 1px solid var(--border);
}

.tool-section h2 {
  margin: 0 0 11px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.tool-button {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel-2);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
}

.tool-button span {
  font-size: 1.05rem;
}

.tool-button.is-active {
  border-color: rgba(255, 223, 0, 0.65);
  background: rgba(255, 223, 0, 0.1);
  color: var(--yellow);
  box-shadow: inset 0 0 0 1px rgba(255, 223, 0, 0.08);
}

.control-label {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 650;
}

.control-label:first-of-type {
  margin-top: 0;
}

.control-label > input[type="range"] {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: var(--yellow);
}

.control-label input[type="color"] {
  width: 42px;
  height: 30px;
  padding: 2px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel-3);
  cursor: pointer;
}

.control-label output {
  color: var(--text);
}

.action-stack {
  display: grid;
  gap: 7px;
}

.action-stack .button {
  justify-content: flex-start;
}

.tool-help {
  margin: 10px 0 0;
  color: #737c8e;
  font-size: 0.7rem;
  line-height: 1.45;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.icon-button {
  display: grid;
  min-height: 38px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--panel-2);
  cursor: pointer;
  font-size: 1.05rem;
}

.icon-button:hover:not(:disabled) {
  border-color: #454e64;
  background: var(--panel-3);
}

.danger-icon {
  color: #ff7182;
}

.toolbar-bottom {
  margin-top: auto;
  border-top: 1px solid var(--border);
  border-bottom: 0;
}

.workspace {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  padding: 16px 22px 12px;
  overflow: hidden;
}

.workspace-heading,
.workspace-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.workspace-heading {
  min-height: 38px;
  margin-bottom: 10px;
}

.workspace-heading > div:first-child {
  display: flex;
  flex-direction: column;
}

.workspace-heading strong {
  font-size: 0.72rem;
  letter-spacing: 0.11em;
}

.workspace-heading span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.revision-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.revision-label strong {
  padding: 5px 8px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--panel);
  color: var(--yellow);
}

.stage-shell {
  position: relative;
  width: 100%;
  max-width: calc((100vh - 173px) * 16 / 9);
  aspect-ratio: 16 / 9;
  margin: auto;
  overflow: hidden;
  border: 1px solid #3a4255;
  border-radius: 12px;
  background-color: #141821;
  background-image:
    linear-gradient(45deg, #1b202b 25%, transparent 25%),
    linear-gradient(-45deg, #1b202b 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #1b202b 75%),
    linear-gradient(-45deg, transparent 75%, #1b202b 75%);
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
  background-size: 24px 24px;
  box-shadow: var(--shadow);
}

.stage-shell::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

#stage {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
  user-select: none;
}

#stage.is-drawing {
  cursor: crosshair;
}

.scene-object {
  cursor: move;
}

.scene-object.is-selected {
  filter: drop-shadow(0 0 9px rgba(255, 223, 0, 0.45));
}

.selection-ui {
  pointer-events: none;
}

.selection-rectangle {
  fill: rgba(255, 223, 0, 0.035);
  stroke: var(--yellow);
  stroke-width: 3;
  stroke-dasharray: 12 8;
  vector-effect: non-scaling-stroke;
}

.resize-handle {
  fill: var(--yellow);
  stroke: #1a1600;
  stroke-width: 5;
  cursor: nwse-resize;
  pointer-events: auto;
  vector-effect: non-scaling-stroke;
}

.drop-hint {
  position: absolute;
  inset: 20px;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 2px dashed rgba(255, 223, 0, 0.7);
  border-radius: 14px;
  background: rgba(10, 12, 17, 0.86);
  color: var(--yellow);
  font-size: 1.2rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease;
}

.stage-shell.is-dragging .drop-hint {
  opacity: 1;
}

.workspace-footer {
  justify-content: center;
  gap: 18px;
  min-height: 32px;
  padding-top: 8px;
  color: #737c8e;
  font-size: 0.67rem;
}

kbd {
  padding: 2px 5px;
  border: 1px solid #3d4558;
  border-bottom-width: 2px;
  border-radius: 5px;
  background: var(--panel-2);
  color: #bdc3d0;
  font-family: inherit;
}

.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 50% 10%, rgba(145, 70, 255, 0.15), transparent 30rem),
    rgba(5, 7, 10, 0.96);
  backdrop-filter: blur(18px);
}

.auth-card {
  width: min(460px, 100%);
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(21, 25, 36, 0.98), rgba(10, 12, 18, 0.98));
  box-shadow: var(--shadow);
  text-align: center;
}

.auth-logo {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  place-items: center;
  border: 1px solid rgba(255, 223, 0, 0.4);
  border-radius: 20px;
  background: rgba(255, 223, 0, 0.1);
  font-size: 1.7rem;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.auth-card h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: -0.045em;
}

.auth-card > p:not(.eyebrow):not(.auth-error) {
  margin: 14px auto 24px;
  color: var(--muted);
  line-height: 1.6;
}

.auth-card .twitch-button {
  width: 100%;
}

.auth-error {
  min-height: 20px;
  margin: 13px 0 0;
  color: #ff7182;
  font-size: 0.78rem;
}

.auth-note {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.74rem;
}

.auth-note strong {
  color: var(--text);
}

.app-dialog {
  width: min(680px, calc(100vw - 30px));
  max-height: min(760px, calc(100vh - 30px));
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  color: var(--text);
  box-shadow: var(--shadow);
}

.app-dialog::backdrop {
  background: rgba(3, 5, 8, 0.78);
  backdrop-filter: blur(8px);
}

.text-dialog form,
.library-dialog {
  padding: 22px;
}

.dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dialog-heading h2 {
  margin: 0;
  font-size: 1.45rem;
}

.dialog-close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--panel-2);
  cursor: pointer;
  color: var(--muted);
  font-size: 1.35rem;
}

.text-dialog label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.text-dialog textarea,
.gif-search input,
.secret-field input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 11px;
  outline: none;
  background: #090b10;
  color: var(--text);
}

.text-dialog textarea {
  min-height: 116px;
  padding: 13px;
  resize: vertical;
}

.text-dialog input[type="range"] {
  width: 100%;
  accent-color: var(--yellow);
}

.text-dialog textarea:focus,
.gif-search input:focus,
.secret-field input:focus {
  border-color: rgba(255, 223, 0, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 223, 0, 0.07);
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 22px;
}

.library-dialog {
  width: min(780px, calc(100vw - 30px));
}

.library-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #090b10;
}

.library-tab {
  flex: 1;
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.library-tab.is-active {
  background: var(--panel-3);
  color: var(--yellow);
}

.library-panel {
  display: none;
  max-height: 510px;
  overflow-y: auto;
}

.library-panel.is-active {
  display: block;
}

.emoji-grid,
.emote-grid,
.gif-grid {
  display: grid;
  gap: 8px;
}

.emoji-grid {
  grid-template-columns: repeat(10, 1fr);
}

.emoji-button,
.emote-button,
.gif-result {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel-2);
  cursor: pointer;
}

.emoji-button {
  min-height: 54px;
  font-size: 1.65rem;
}

.emoji-button:hover,
.emote-button:hover,
.gif-result:hover {
  border-color: rgba(255, 223, 0, 0.5);
  background: var(--panel-3);
}

.emote-groups section + section {
  margin-top: 20px;
}

.emote-groups h3 {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.emote-button {
  min-height: 66px;
  padding: 7px;
}

.emote-button img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.gif-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 13px;
}

.gif-search input {
  min-height: 42px;
  padding: 0 12px;
}

.gif-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gif-result {
  aspect-ratio: 16 / 10;
  padding: 0;
}

.gif-result img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.library-message {
  padding: 28px 12px;
  color: var(--muted);
  text-align: center;
}

.library-message.is-error {
  color: #ff7182;
}

.tenor-credit {
  margin: 12px 0 0;
  color: #697184;
  font-size: 0.65rem;
  text-align: right;
}

.tenor-credit a {
  color: #9ea6b7;
  text-decoration: underline;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: min(420px, calc(100vw - 40px));
  padding: 12px 15px;
  border: 1px solid rgba(53, 223, 136, 0.35);
  border-radius: 11px;
  background: #10231a;
  box-shadow: var(--shadow);
  color: #8af2b7;
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: 180ms ease;
}

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

.toast.is-error {
  border-color: rgba(255, 77, 97, 0.4);
  background: #2a1117;
  color: #ff95a1;
}

.overlay-page {
  width: 100vw;
  height: 100vh;
  min-height: 0;
  overflow: hidden;
  background: transparent !important;
}

#overlayStage {
  position: fixed;
  inset: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  overflow: visible;
  pointer-events: none;
}

.owner-page {
  min-height: 100vh;
}

.owner-shell {
  width: min(1100px, calc(100% - 34px));
  margin: 0 auto;
  padding: 44px 0 70px;
}

.owner-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.owner-hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.owner-hero > div:first-child > p:last-child {
  max-width: 650px;
  margin: 15px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.secret-card,
.setup-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(20, 24, 36, 0.96), rgba(11, 13, 19, 0.96));
  box-shadow: var(--shadow);
}

.secret-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.secret-card h2,
.setup-card h2 {
  margin: 0;
}

.status-pill {
  padding: 7px 10px;
  border: 1px solid rgba(53, 223, 136, 0.25);
  border-radius: 99px;
  background: rgba(53, 223, 136, 0.07);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
}

.secret-field {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.secret-field input {
  height: 48px;
  padding: 0 13px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.76rem;
}

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

.danger-zone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.danger-zone p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.metadata {
  margin: 14px 0 0;
  color: #697184;
  font-size: 0.7rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 14px;
}

.stat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
}

.stat-card span {
  color: var(--muted);
  font-size: 0.76rem;
}

.stat-card strong {
  color: var(--yellow);
  font-size: 1.75rem;
}

.setup-card {
  margin-top: 14px;
  box-shadow: none;
}

.setup-card ol {
  margin: 16px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.9;
}

@media (max-width: 1050px) {
  .panel-layout {
    grid-template-columns: 242px minmax(0, 1fr);
  }

  .topbar .live-status {
    margin-left: 10px;
  }

  .owner-link {
    padding-inline: 9px;
  }

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

@media (max-width: 820px) {
  .panel-page {
    height: auto;
    overflow: auto;
  }

  .topbar {
    flex-wrap: wrap;
    gap: 9px;
  }

  .brand {
    min-width: auto;
  }

  .live-status {
    order: 3;
    width: 100%;
    margin: 0 !important;
    padding-top: 8px;
    border-top: 1px solid var(--border);
  }

  .user-chip.compact {
    display: none;
  }

  .panel-layout {
    height: auto;
    grid-template-columns: 1fr;
  }

  .toolbar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .toolbar-bottom {
    margin-top: 0;
  }

  .workspace {
    min-height: 70vh;
  }

  .stage-shell {
    max-width: 100%;
  }

  .workspace-footer {
    flex-wrap: wrap;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .emoji-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .emote-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 540px) {
  .topbar {
    padding-inline: 11px;
  }

  .brand small,
  .button-ghost {
    display: none;
  }

  .owner-link {
    font-size: 0.72rem;
  }

  .toolbar {
    grid-template-columns: 1fr;
  }

  .workspace {
    padding-inline: 10px;
  }

  .workspace-heading {
    align-items: flex-start;
    gap: 8px;
  }

  .revision-label > span {
    display: none;
  }

  .workspace-footer {
    display: none;
  }

  .auth-card {
    padding: 27px 20px;
  }

  .emoji-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .emote-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .secret-card,
  .setup-card {
    padding: 20px;
  }

  .secret-card-heading,
  .danger-zone {
    align-items: flex-start;
    flex-direction: column;
  }
}
