/* ==========================================================================
   1.Clickza.space — Stylesheet
   Design language: white canvas, blue accent, generous spacing,
   soft depth. Inspired by the calm, precise tone of modern SaaS tools.
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

/* ---------- Design tokens ---------- */
:root {
  --color-bg: #ffffff;
  --color-surface: #f7f9fc;
  --color-surface-alt: #eef2f9;
  --color-border: #e5e9f1;
  --color-border-strong: #d7deea;

  --color-text: #0f172a;
  --color-text-secondary: #5b6474;
  --color-text-muted: #94a0b3;

  --color-primary: #2f5fee;
  --color-primary-hover: #2249c9;
  --color-primary-light: #eef2ff;
  --color-primary-ring: rgba(47, 95, 238, 0.16);

  --color-accent-wa: #22c55e;
  --color-accent-wa-light: #eafcf1;

  --color-danger: #e0393e;
  --color-danger-light: #fdeeee;
  --color-danger-hover: #c72f34;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.04);
  --shadow-sm: 0 2px 8px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 8px 24px rgba(16, 24, 40, 0.07);
  --shadow-lg: 0 20px 48px rgba(16, 24, 40, 0.10);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'SF Mono', 'Roboto Mono', Menlo, Consolas, monospace;

  --max-width: 1120px;
  --transition: 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  min-height: 100vh;
}

h1, h2, h3, h4 { font-weight: 650; letter-spacing: -0.02em; color: var(--color-text); }
h1 { font-size: 2.75rem; line-height: 1.12; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.375rem; line-height: 1.3; }
p { color: var(--color-text-secondary); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 1px 2px rgba(47, 95, 238, 0.25), 0 6px 16px rgba(47, 95, 238, 0.18);
}
.btn-primary:hover { background: var(--color-primary-hover); }

.btn-secondary {
  background: #fff;
  color: var(--color-text);
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover { border-color: var(--color-primary); color: var(--color-primary); }

.btn-ghost {
  background: transparent;
  color: var(--color-text-secondary);
}
.btn-ghost:hover { background: var(--color-surface); color: var(--color-text); }

.btn-danger {
  background: var(--color-danger-light);
  color: var(--color-danger);
}
.btn-danger:hover { background: var(--color-danger); color: #fff; }

.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 0.8125rem; border-radius: var(--radius-sm); }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

/* ---------- Forms ---------- */
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}
.field .hint { font-size: 0.8125rem; color: var(--color-text-muted); margin-top: 6px; }
.field .error { font-size: 0.8125rem; color: var(--color-danger); margin-top: 6px; }

.input, .textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.input::placeholder, .textarea::placeholder { color: var(--color-text-muted); }
.input:focus, .textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-ring);
}
.textarea { resize: vertical; min-height: 110px; }

.input-prefix-group {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.input-prefix-group:focus-within { border-color: var(--color-primary); box-shadow: 0 0 0 4px var(--color-primary-ring); }
.input-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--color-surface);
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.9375rem;
  border-right: 1px solid var(--color-border-strong);
}
.input-prefix-group .input { border: none; box-shadow: none; }
.input-prefix-group .input:focus { box-shadow: none; }

/* ---------- Flash messages ---------- */
.flash {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
.flash-success { background: var(--color-accent-wa-light); color: #15803d; border-color: #bbf0cf; }
.flash-error { background: var(--color-danger-light); color: var(--color-danger-hover); border-color: #f6c8ca; }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.card-pad { padding: 32px; }

/* ==========================================================================
   Public site chrome (landing / auth)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(155deg, var(--color-primary), #6f8bff);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 14px rgba(47, 95, 238, 0.32);
}
.header-actions { display: flex; align-items: center; gap: 10px; }

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 72px;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.8125rem;
  font-weight: 650;
  margin-bottom: 22px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .hl { color: var(--color-primary); }
.hero-lede { font-size: 1.125rem; max-width: 46ch; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-note { font-size: 0.8438rem; color: var(--color-text-muted); }

/* Signature visual: a permanent link that points to a swapping destination */
.link-swap {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.link-swap-url {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--color-text);
  box-shadow: var(--shadow-xs);
}
.link-swap-url .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent-wa); flex-shrink: 0; }
.link-swap-arrow {
  display: flex;
  justify-content: center;
  padding: 14px 0;
  color: var(--color-text-muted);
}
.wa-bubble {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.wa-bubble-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.wa-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--color-accent-wa-light);
  color: var(--color-accent-wa);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-number { font-weight: 650; font-size: 0.9375rem; }
.wa-status { font-size: 0.75rem; color: var(--color-text-muted); }
.wa-message {
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.875rem;
  color: var(--color-text);
  min-height: 46px;
}
.wa-message .cursor-blink {
  display: inline-block; width: 2px; height: 1em; background: var(--color-text-muted);
  vertical-align: text-bottom; animation: blink 1s step-end infinite; margin-left: 2px;
}
@keyframes blink { 50% { opacity: 0; } }

.swap-tag {
  position: absolute;
  top: -12px; right: 22px;
  background: var(--color-text);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}

/* ---------- Feature grid ---------- */
.section { padding: 76px 0; }
.section-head { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { margin-bottom: 12px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.feature-card:hover { transform: translateY(-3px); background: #fff; box-shadow: var(--shadow-md); }
.feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 8px; font-size: 1.0625rem; }
.feature-card p { font-size: 0.9375rem; }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  padding: 28px 24px;
  position: relative;
}
.step-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--color-text);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 650;
  font-size: 0.875rem;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; font-size: 1.0625rem; }
.step p { font-size: 0.9375rem; }

.cta-band {
  background: var(--color-text);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  color: #fff;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.cta-band .btn-primary { box-shadow: 0 8px 24px rgba(0,0,0,0.35); }

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 32px 0;
  margin-top: 24px;
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Auth pages
   ========================================================================== */
.auth-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.auth-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(47,95,238,0.06), transparent),
    var(--color-bg);
}
.auth-card {
  width: 100%;
  max-width: 400px;
  padding: 40px 36px;
}
.auth-head { text-align: center; margin-bottom: 28px; }
.auth-head .brand { justify-content: center; margin-bottom: 18px; }
.auth-head h1 { font-size: 1.5rem; margin-bottom: 6px; }
.auth-head p { font-size: 0.9375rem; }
.auth-foot { text-align: center; margin-top: 22px; font-size: 0.9375rem; color: var(--color-text-secondary); }
.auth-foot a { color: var(--color-primary); font-weight: 600; }

/* ==========================================================================
   Dashboard shell
   ========================================================================== */
.app-shell { display: flex; min-height: 100vh; }

.sidebar {
  width: 244px;
  flex-shrink: 0;
  border-right: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
}
.sidebar .brand { padding: 0 10px; margin-bottom: 32px; }
.nav-group { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  color: var(--color-text-secondary);
  font-weight: 550;
  font-size: 0.9375rem;
  transition: background var(--transition), color var(--transition);
}
.nav-link svg { flex-shrink: 0; opacity: 0.85; }
.nav-link:hover { background: #fff; color: var(--color-text); box-shadow: var(--shadow-xs); }
.nav-link.active { background: #fff; color: var(--color-primary); box-shadow: var(--shadow-xs); }
.nav-link.active svg { opacity: 1; }
.sidebar-foot { border-top: 1px solid var(--color-border-strong); padding-top: 14px; margin-top: 14px; }
.user-chip { display: flex; align-items: center; gap: 10px; padding: 8px 10px; margin-bottom: 6px; }
.user-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--color-primary-light); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 650; font-size: 0.8125rem; flex-shrink: 0;
}
.user-name { font-size: 0.875rem; font-weight: 600; line-height: 1.2; }
.user-role { font-size: 0.75rem; color: var(--color-text-muted); }

.topbar {
  height: 72px;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--color-border);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 30;
}
.menu-toggle {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-strong);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
}

.main {
  flex: 1;
  min-width: 0;
  padding: 40px 44px 60px;
}
.page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.page-head h1 { font-size: 1.75rem; }
.page-head p { margin-top: 6px; }

/* ---------- Stat cards ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.stat-card {
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.stat-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-icon.blue { background: var(--color-primary-light); color: var(--color-primary); }
.stat-icon.green { background: var(--color-accent-wa-light); color: var(--color-accent-wa); }
.stat-value { font-size: 1.875rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.stat-label { font-size: 0.875rem; color: var(--color-text-secondary); margin-top: 4px; }

/* ---------- Tables ---------- */
.table-card { overflow: hidden; }
.table-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--color-border);
}
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
thead th {
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  font-weight: 650;
  padding: 14px 24px;
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}
tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
  vertical-align: middle;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr { transition: background var(--transition); }
tbody tr:hover { background: var(--color-surface); }

.link-slug { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.link-slug .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-accent-wa); flex-shrink: 0; }
.cell-muted { color: var(--color-text-muted); font-size: 0.875rem; }
.cell-truncate { max-width: 260px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.row-actions { display: flex; gap: 8px; justify-content: flex-end; }
.icon-btn {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border-strong);
  color: var(--color-text-secondary);
  background: #fff;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.icon-btn:hover { color: var(--color-primary); border-color: var(--color-primary); background: var(--color-primary-light); }
.icon-btn.danger:hover { color: var(--color-danger); border-color: var(--color-danger); background: var(--color-danger-light); }

.empty-state { text-align: center; padding: 64px 24px; }
.empty-state .stat-icon { margin: 0 auto 18px; width: 52px; height: 52px; border-radius: 14px; }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { max-width: 34ch; margin: 0 auto 22px; }

/* ---------- Create / Edit form layout ---------- */
.form-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}
.form-actions { display: flex; gap: 12px; margin-top: 8px; }
.preview-sticky { position: sticky; top: 24px; }
.preview-label { font-size: 0.8125rem; font-weight: 650; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; }
.slug-preview {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  background: var(--color-surface);
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 18px;
  word-break: break-all;
}
.slug-locked { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.875rem; color: var(--color-text); background: var(--color-surface); border: 1px solid var(--color-border-strong); border-radius: var(--radius-md); padding: 13px 16px; }
.slug-locked svg { color: var(--color-text-muted); flex-shrink: 0; }

/* ---------- Modal (delete confirm) ---------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  z-index: 100;
}
.modal-overlay.open { display: flex; }
.modal {
  width: 100%; max-width: 380px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  animation: modal-in 160ms ease;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(8px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--color-danger-light); color: var(--color-danger);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.modal h3 { margin-bottom: 8px; }
.modal p { margin-bottom: 24px; font-size: 0.9375rem; }
.modal-actions { display: flex; gap: 10px; }
.modal-actions .btn { flex: 1; }

/* ==========================================================================
   404 page
   ========================================================================== */
.notfound-shell {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  text-align: center;
}
.notfound-card { max-width: 420px; }
.notfound-badge {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--color-primary-light); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.notfound-card h1 { font-size: 1.625rem; margin-bottom: 10px; }
.notfound-card p { margin-bottom: 28px; }
.notfound-slug { font-family: var(--font-mono); background: var(--color-surface); padding: 2px 8px; border-radius: 6px; color: var(--color-text); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 48px; text-align: left; }
  .feature-grid, .steps { grid-template-columns: 1fr 1fr; }
  .form-layout { grid-template-columns: 1fr; }
  .preview-sticky { position: static; order: -1; }
  .stat-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .sidebar { display: none; }
  .topbar { display: flex; }
  .main { padding: 28px 20px 48px; }
  .sidebar.open {
    display: flex;
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 60;
    width: 260px;
    box-shadow: var(--shadow-lg);
  }
  .sidebar-backdrop { position: fixed; inset: 0; background: rgba(15,23,42,0.4); z-index: 50; display: none; }
  .sidebar-backdrop.open { display: block; }
}

@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  .feature-grid, .steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .site-header .container { padding: 0 16px; }
  .cta-band { padding: 40px 24px; }
  .page-head { align-items: flex-start; }
  .table-card-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .row-actions { justify-content: flex-start; }
}
