:root {
  /* Paleta alinhada ao 2Face (frontend/apps/dashboard/src/styles.scss) */
  --color-primary: #0054a6;
  --color-primary-hover: #003d7a;
  --color-primary-active: #002e5d;
  --color-on-primary: #fff;
  --color-ring: #00aeef;
  --color-background: #f6f8fc;
  --color-foreground: #0f1e34;
  --color-card: #fff;
  --color-muted: #eaf1fb;
  --color-muted-fg: #536178;
  --color-border: #e2e8f0;
  --color-success: #0f7b46;
  --color-success-bg: #e3f6ec;
  --color-warning: #92600a;
  --color-warning-bg: #fdf3e0;
  --color-danger: #c22a2a;
  --color-danger-bg: #fdecec;
  --color-info: #1d5fbf;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow: 0 8px 24px rgba(15, 30, 52, 0.08);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --tap: 44px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  position: static !important;
  inset: auto !important;
  margin: 0;
  min-height: 100%;
  height: auto !important;
  width: auto !important;
  overflow: visible !important;
  overscroll-behavior: auto;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-foreground);
  background: var(--color-background);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  min-height: var(--tap);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  padding: 0 16px;
  font-weight: 600;
  transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease, transform 0.1s ease;
}

button:active:not(:disabled) {
  transform: translateY(1px);
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-ring);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-on-primary);
}

.btn-primary:hover:not(:disabled) {
  background: var(--color-primary-hover);
}

.btn-primary:active:not(:disabled) {
  background: var(--color-primary-active);
}

.btn-secondary {
  background: var(--color-card);
  color: var(--color-foreground);
  border-color: var(--color-border);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--color-muted);
}

.btn-danger {
  background: var(--color-danger-bg);
  color: var(--color-danger);
  border-color: #f6c6c6;
}

.btn-danger:hover:not(:disabled) {
  background: #fbdada;
}

.btn-sm {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.8125rem;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.app-shell {
  min-height: 100dvh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 24px;
  background: var(--color-card);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.topbar-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(240px, 52vw);
  object-fit: contain;
  object-position: left center;
  flex: none;
}

.topbar-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar h1 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.topbar-meta {
  color: var(--color-muted-fg);
  font-size: 0.8125rem;
}

.layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 56px;
}

.page-head {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.page-head h2 {
  margin: 0 0 4px;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-head p {
  margin: 0;
  color: var(--color-muted-fg);
  font-size: 0.9rem;
}

.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.card + .card {
  margin-top: 16px;
}

.section-head {
  margin-bottom: 16px;
}

.card .section-head h2 {
  margin: 0 0 4px;
}

.editor-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-head p {
  margin: 0;
  color: var(--color-muted-fg);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border: 0;
  min-height: 36px;
  padding: 0 4px;
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0 0 6px -4px;
}

.btn-ghost:hover:not(:disabled) {
  background: var(--color-muted);
}

.req {
  color: var(--color-danger);
  font-weight: 700;
  text-decoration: none;
}

.field-legend,
.field-sublabel {
  display: block;
  margin-bottom: 6px;
  font-size: 0.875rem;
  font-weight: 600;
}

.field-sublabel {
  font-weight: 500;
  color: var(--color-muted-fg);
}

.field--invalid input,
.field--invalid select,
.field--invalid textarea {
  border-color: var(--color-danger);
}

.input-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.input-row input {
  flex: 1 1 auto;
  min-width: 0;
}

.input-row .btn-secondary {
  flex: none;
  white-space: nowrap;
}

.grid-mini {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 16px;
}

@media (min-width: 720px) {
  .grid-mini {
    grid-template-columns: 1fr 1fr;
  }
}

.color-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 16px;
}

@media (min-width: 640px) {
  .color-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.sdk-field {
  margin-bottom: 4px;
}

.sdk-row {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-muted);
  padding: 10px 12px;
}

.switch {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  cursor: pointer;
  position: relative;
  width: 100%;
}

.sdk-field .switch input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  clip: rect(0, 0, 0, 0);
}

.switch-track {
  position: relative;
  width: 44px;
  height: 26px;
  border-radius: 999px;
  background: #c5ced9;
  flex: none;
  transition: background 0.15s ease;
}

.switch-track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 30, 52, 0.25);
  transition: transform 0.15s ease;
}

.switch input:checked + .switch-track {
  background: var(--color-success);
}

.switch input:checked + .switch-track::after {
  transform: translateX(18px);
}

.switch input:focus-visible + .switch-track {
  outline: 2px solid var(--color-ring);
  outline-offset: 2px;
}

.switch-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.switch-copy strong {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
}

.switch-copy span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-muted-fg);
  line-height: 1.35;
}

.combo {
  position: relative;
}

.combo-toggle {
  width: 100%;
  min-height: var(--tap);
  text-align: left;
  background: #fff;
  color: var(--color-foreground);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 36px 10px 12px;
  font-weight: 500;
  position: relative;
}

.combo-toggle::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: var(--color-muted-fg);
  transform: translateY(-25%);
}

.combo.is-open .combo-toggle {
  border-color: var(--color-primary);
}

.combo-panel {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 8px;
}

.combo-search {
  width: 100%;
}

.combo-list {
  max-height: 240px;
  overflow: auto;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.combo-option {
  min-height: 40px;
  padding: 8px 10px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 0.875rem;
  line-height: 1.35;
}

.combo-option:hover,
.combo-option.is-hi {
  background: var(--color-muted);
}

.combo-option.is-selected {
  font-weight: 700;
}

.combo-empty {
  padding: 12px 10px;
  color: var(--color-muted-fg);
  font-size: 0.875rem;
}

.error-list {
  margin: 8px 0 0;
  padding-left: 18px;
}

.error-list a {
  color: inherit;
}

.form-error p {
  margin: 6px 0 0;
  font-weight: 500;
}

.form-error:focus {
  outline: 2px solid var(--color-ring);
  outline-offset: 2px;
}

.layout--sdk-test {
  max-width: none;
  padding: 16px 16px 28px;
}

.sdk-test-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.sdk-check {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  font-size: 0.875rem;
}

.sdk-check strong {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sdk-check.ok {
  background: var(--color-success-bg);
  border-color: transparent;
  color: var(--color-success);
}

.sdk-check.bad {
  background: var(--color-warning-bg);
  border-color: transparent;
  color: var(--color-warning);
}

.sdk-test-help p {
  margin: 0 0 12px;
  color: var(--color-muted-fg);
}

.sdk-test-frame {
  display: block;
  width: 100%;
  height: min(78vh, 860px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.layout--editor {
  padding-bottom: 108px;
  max-width: 1280px;
}

.editor-actions {
  position: sticky;
  bottom: 0;
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px -20px 0;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
  background: var(--color-card);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 24px rgba(15, 30, 52, 0.06);
}

html {
  scroll-padding-bottom: 96px;
}

.preview-window {
  padding: 0;
  overflow: hidden;
}

.preview-note {
  margin: 0 0 10px;
  font-size: 0.8125rem;
  color: var(--color-muted-fg);
}

/* Pré-visualização usa markup/CSS do chat real (/styles.css), escopado aqui */
.chat-preview-frame {
  background: #0b141a;
  padding: 12px 12px 0;
}

.chat-preview-shell {
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
  align-items: stretch !important;
  justify-content: center !important;
}

.chat-preview-app {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  border-radius: 12px 12px 0 0 !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 12px 32px rgba(0, 0, 0, 0.35) !important;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  background: #e5ddd5 !important;
  color: #111b21;
}

.chat-preview-frame .wa-thread {
  flex: 0 0 auto !important;
  overflow: hidden !important;
  min-height: 0 !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  background: #e5ddd5 !important;
}

.chat-preview-frame .wa-header,
.chat-preview-frame .wa-composer {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
}

.chat-preview-frame .wa-header {
  padding-right: 6px;
}

.chat-preview-frame button {
  transform: none;
}

.chat-preview-frame button.wa-header-action,
.chat-preview-frame button.wa-embed-close,
.chat-preview-frame button.wa-send,
.chat-preview-frame button.wa-chip {
  min-height: unset;
  padding: unset;
  border: none;
  font-weight: unset;
}

.chat-preview-frame button.wa-send,
.chat-preview-frame button.wa-embed-close,
.chat-preview-frame button.wa-header-action {
  border-radius: 50%;
}

.chat-preview-frame button.wa-chip:disabled {
  opacity: 1;
  cursor: default;
}

.chat-preview-frame .wa-embed-close:not([hidden]) {
  display: grid;
}

.preview-bubble-wrap {
  margin: 0;
  min-height: 128px;
  position: relative;
  border: 0;
  border-top: 1px dashed var(--color-border);
  border-radius: 0;
  background: #e8eef3;
}

.snippet {
  margin: 0 0 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--color-muted);
  font-family: ui-monospace, Consolas, monospace;
  font-size: 12px;
  word-break: break-all;
  white-space: pre-wrap;
}

.card h2 {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 700;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 960px) {
  .grid-2 {
    grid-template-columns: minmax(0, 1fr) min(420px, 36vw);
  }
}

.field {
  margin-bottom: 14px;
}

.field > label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.875rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: var(--tap);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  background: #fff;
  color: var(--color-foreground);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  border-color: var(--color-primary);
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.fmt-toolbar {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.fmt-btn {
  min-width: 36px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #fff;
  color: var(--color-foreground);
  font-size: 0.8125rem;
  cursor: pointer;
}

.fmt-btn:hover,
.fmt-btn:focus-visible {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.fmt-btn.is-on {
  border-color: var(--color-primary);
  background: #eff6ff;
}

.fmt-wrap textarea {
  font-family: "Plus Jakarta Sans", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}

.emoji-modal {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 24px;
  border: none;
  background: transparent;
}

.emoji-modal[open] {
  display: grid;
  place-items: center;
}

.emoji-modal::backdrop {
  background: rgba(15, 30, 52, 0.48);
}

.emoji-modal-card {
  width: min(420px, calc(100vw - 32px));
  border-radius: var(--radius-lg);
  background: var(--color-card);
  box-shadow: 0 24px 64px rgba(15, 30, 52, 0.28);
  overflow: hidden;
}

.emoji-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
}

.emoji-modal-head h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.emoji-modal-close {
  min-height: 36px;
  min-width: 36px;
  padding: 0;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-muted-fg);
  font-size: 1.25rem;
  line-height: 1;
}

.emoji-modal-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 4px;
  padding: 12px;
  max-height: min(360px, 70vh);
  overflow: auto;
}

.emoji-btn {
  min-height: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 400;
}

.emoji-btn:hover,
.emoji-btn:focus-visible {
  background: #f1f5f9;
}

.field-hint {
  margin-top: 6px;
  color: var(--color-muted-fg);
  font-size: 0.8125rem;
}

.field-error {
  margin-top: 6px;
  color: var(--color-danger);
  font-size: 0.8125rem;
  font-weight: 600;
}

.form-error,
.alert {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
}

.form-error,
.alert--error {
  background: var(--color-danger-bg);
  color: var(--color-danger);
}

.alert--info {
  background: var(--color-muted);
  color: var(--color-info);
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.search {
  flex: 1 1 220px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: none;
}

.badge.on {
  background: var(--color-success-bg);
  color: var(--color-success);
}

.badge.on::before {
  background: var(--color-success);
}

.badge.off {
  background: var(--color-danger-bg);
  color: var(--color-danger);
}

.badge.off::before {
  background: var(--color-danger);
}

.badge.muted {
  background: var(--color-muted);
  color: var(--color-muted-fg);
}

.badge.muted::before {
  background: var(--color-muted-fg);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

thead th {
  position: sticky;
  top: 0;
  background: var(--color-card);
}

th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-muted-fg);
}

tbody tr:hover {
  background: var(--color-muted);
}

.row-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.color-row {
  display: grid;
  grid-template-columns: var(--tap) 1fr;
  gap: 10px;
  align-items: center;
}

.color-row input[type="color"] {
  width: var(--tap);
  height: var(--tap);
  padding: 4px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
}

.preview-panel {
  position: sticky;
  top: 76px;
  align-self: start;
  z-index: 4;
}

.preview-panel h2 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted-fg);
  font-weight: 700;
}

.preview-bubble {
  --tw2-bot: #ce2917;
  position: absolute;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 64px;
  max-width: 280px;
  padding: 8px 16px 8px 10px;
  border-radius: 32px;
  background: #fff;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.preview-bubble-status {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #78cd23;
  flex: none;
}

.preview-bubble-mascot-wrap {
  color: var(--tw2-bot);
  display: flex;
  flex: none;
}

.preview-bubble-mascot {
  display: block;
}

.preview-bubble-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-align: left;
  min-width: 0;
}

.preview-bubble-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.preview-bubble-text {
  font-size: 11px;
  font-weight: 500;
  color: #313131;
  line-height: 1.25;
  max-width: 168px;
}

.preview-bubble.right {
  right: 16px;
}

.preview-bubble.left {
  left: 16px;
}

.login-wrap {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 84, 166, 0.08), transparent 45%),
    radial-gradient(circle at 85% 90%, rgba(0, 174, 239, 0.08), transparent 45%),
    var(--color-background);
}

.login-card {
  width: min(420px, 100%);
  padding: 24px 20px 20px;
}

.login-logo {
  display: block;
  width: min(280px, 100%);
  height: auto;
  margin: 0 auto 16px;
  object-fit: contain;
}

.login-subtitle {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 16px;
  color: var(--color-muted-fg);
  text-align: center;
  justify-content: center;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

.spinner.dark {
  border-color: rgba(15, 30, 52, 0.15);
  border-top-color: var(--color-primary);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.empty {
  padding: 40px 24px;
  text-align: center;
  color: var(--color-muted-fg);
}

.empty strong {
  display: block;
  color: var(--color-foreground);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.skeleton {
  background: linear-gradient(90deg, var(--color-muted) 25%, #f2f6fc 37%, var(--color-muted) 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

.skeleton-row td {
  padding: 14px 10px;
}

.skeleton-row .skeleton {
  height: 14px;
  width: 70%;
}

.skeleton-input {
  height: var(--tap);
  width: 100%;
}

.credor-picker .credor-search {
  margin-bottom: 8px;
}

.credor-picker .field-error {
  margin-top: 0;
  margin-bottom: 8px;
}

.toast-stack {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: min(360px, calc(100vw - 40px));
}

.toast {
  background: var(--color-foreground);
  color: #fff;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast.toast--success::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  flex: none;
}

.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}
