/* ═══════════════════════════════════════════════════════════
   staff.css  |  Casa Regal — Staff Schedule Tool
   Mobile-first styles for staff.html
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:       #4f46e5;
  --accent-light: #eef2ff;
  --text:         #111827;
  --muted:        #6b7280;
  --border:       #e5e7eb;
  --bg:           #f3f4f6;
  --surface:      #ffffff;
  --green:        #16a34a;
  --green-bg:     #dcfce7;
  --amber:        #d97706;
  --amber-bg:     #fef3c7;
  --red:          #dc2626;
  --red-bg:       #fee2e2;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
}

/* ── Header ────────────────────────────────────────────────── */
.hdr {
  background: var(--accent);
  color: #fff;
  padding: 20px 20px 24px;
}
.hdr-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: 10px;
}
.hdr-name {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}
.hdr-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.hdr-role {
  background: rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
}
.hdr-code {
  font-size: 11px;
  opacity: .65;
  font-family: monospace;
  letter-spacing: .5px;
}
.hdr-date {
  font-size: 13px;
  opacity: .8;
}
.hdr-leave-pill {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2px;
}
.hdr-team {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.hdr-team-label {
  font-size: 11px;
  font-weight: 600;
  opacity: .65;
  text-transform: uppercase;
  letter-spacing: .4px;
  flex-shrink: 0;
}
.hdr-team-chip {
  background: rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2px;
}

/* ── Summary bar ───────────────────────────────────────────── */
.summary-bar {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  align-items: center;
}
.sum-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.sum-dot        { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.chip-setup     { background: #eff6ff; color: #1e40af; }
.chip-noguest   { background: #fffbeb; color: #92400e; }
.chip-cleaning  { background: #f0fdf4; color: #166534; }

/* ── Progress board ────────────────────────────────────────── */
.progress-board {
  padding: 14px 14px 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 540px;
  margin: 0 auto;
}
.prog-card {
  background: var(--prog-bg, #f9fafb);
  border: 1.5px solid color-mix(in srgb, var(--prog-color, #d1d5db) 25%, #fff);
  border-radius: 14px;
  padding: 12px 14px 10px;
  transition: box-shadow .2s;
}
.prog-card.prog-all-done {
  box-shadow: 0 0 0 2px var(--prog-color);
}
.prog-card-top {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}
.prog-icon  { font-size: 16px; flex-shrink: 0; }
.prog-label {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.prog-fraction {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  min-width: 32px;
  text-align: right;
}
.prog-fraction-done { color: var(--prog-color); }
.prog-bar-track {
  height: 8px;
  background: rgba(0,0,0,.07);
  border-radius: 999px;
  overflow: hidden;
}
.prog-bar-fill {
  height: 100%;
  background: var(--prog-color, #d1d5db);
  border-radius: 999px;
  transition: width .45s cubic-bezier(.4,0,.2,1);
  min-width: 0;
}
.prog-done-badge {
  margin-top: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--prog-color);
  text-align: right;
}
.prog-celebrate {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  letter-spacing: .2px;
  animation: pop .35s cubic-bezier(.175,.885,.32,1.275) both;
}
@keyframes pop {
  from { transform: scale(.85); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* ── Refresh button (header pill) ─────────────────────────── */
.hdr-refresh {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,.22);
  border: 1.5px solid rgba(255,255,255,.45);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  touch-action: manipulation;
  transition: background .15s, transform .1s;
  flex-shrink: 0;
  white-space: nowrap;
}
.hdr-refresh:active {
  background: rgba(255,255,255,.38);
  transform: scale(.96);
}
.refresh-btn-top-icon { font-size: 16px; display: inline-block; }
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Content ───────────────────────────────────────────────── */
.content {
  padding: 12px 14px 40px;
  max-width: 540px;
  margin: 0 auto;
}

/* ── Property card ─────────────────────────────────────────── */
.prop-card {
  background: var(--surface);
  border-radius: 16px;
  border: 1.5px solid var(--border);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.card-top {
  padding: 14px 16px 12px;
  border-left: 5px solid #d1d5db;
}
.card-type-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 999px;
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.card-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.card-loc-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 4px 12px 4px 8px;
  background: #f0f0ff;
  color: var(--accent);
  border: 1.5px solid #c7d2fe;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.3;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  -webkit-tap-highlight-color: transparent;
}
.card-loc-pill:active { background: #e0e7ff; border-color: var(--accent); }

.card-pax {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #1d4ed8;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-linen-flag {
  margin-top: 5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fef3c7;
  border: 1.5px solid #f59e0b;
  color: #92400e;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ── Issues strip ──────────────────────────────────────────── */
.issues-strip {
  border-top: 1px solid var(--border);
  margin: 0 16px;
}
.issues-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  cursor: pointer;
  user-select: none;
}
.toggle-arrow { transition: transform .18s; font-size: 10px; }
.issues-toggle.open .toggle-arrow { transform: rotate(90deg); }
.issues-body { display: none; padding-bottom: 10px; }
.issues-body.open { display: block; }
.issue-item {
  padding: 8px 0;
  border-top: 1px solid var(--border);
}
.issue-item:first-child { border-top: none; }
.issue-item-hdr {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}
.issue-cat  { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; }
.issue-pri  { font-size: 12px; }
.issue-desc { font-size: 13px; color: var(--text); line-height: 1.4; }

/* ── Action buttons ────────────────────────────────────────── */
.card-actions {
  padding: 12px 16px 14px;
  display: flex;
  gap: 10px;
}
.act-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 13px 8px;
  border-radius: 12px;
  border: 2px solid;
  background: var(--surface);
  cursor: pointer;
  font-family: inherit;
  touch-action: manipulation;
  transition: background .15s, color .15s, transform .1s;
  min-height: 60px;
}
.act-btn:active:not(:disabled) { transform: scale(.96); }
.act-btn:disabled { opacity: .38; cursor: not-allowed; }

.btn-arrived           { border-color: #3b82f6; color: #1e40af; }
.btn-arrived.confirmed { background: #3b82f6; color: #fff; border-color: #3b82f6; cursor: default; }
.btn-done              { border-color: #22c55e; color: #166534; }
.btn-done.confirmed    { background: #22c55e; color: #fff; border-color: #22c55e; cursor: default; }

.btn-label { font-size: 14px; font-weight: 700; }
.btn-time  { font-size: 10px; opacity: .85; font-weight: 500; }

/* ── Notes / checklist section ─────────────────────────────── */
.notes-section {
  padding: 0 16px 14px;
  display: none;
}
.notes-section.open { display: block; }

/* Checklist wrapper */
.checklist-wrap {
  background: #fafafa;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 14px 12px;
}
.checklist-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 10px;
}
.checklist-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.check-device {
  width: 22px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
}
.check-btn {
  flex: 1;
  padding: 8px 6px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  color: var(--muted);
  cursor: pointer;
  touch-action: manipulation;
  transition: background .15s, border-color .15s, color .15s;
}
.check-btn.check-ok.active {
  background: #dcfce7;
  border-color: #86efac;
  color: #166534;
}
.check-btn.check-issue.active {
  background: #fef3c7;
  border-color: #fcd34d;
  color: #92400e;
}

.notes-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 6px;
}
.notes-opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
}
.notes-inp {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  resize: none;
  outline: none;
  line-height: 1.4;
}
.notes-inp:focus { border-color: var(--accent); }
.notes-save {
  margin-top: 10px;
  width: 100%;
  padding: 12px;
  background: #16a34a;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  touch-action: manipulation;
}
.notes-save:active { opacity: .85; }

/* Done summary (read-only after completion) */
.done-summary {
  margin-top: 2px;
  padding: 8px 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  font-size: 12px;
  color: #166534;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
}

/* ── Full-page states ──────────────────────────────────────── */
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}
.spinner {
  width: 38px;
  height: 38px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.error-state, .empty-state {
  text-align: center;
  padding: 70px 30px;
}
.state-icon  { font-size: 52px; margin-bottom: 14px; }
.state-title { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.state-msg   { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Login screen ──────────────────────────────────────────── */
.login-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: var(--accent);
}
.login-logo {
  text-align: center;
  margin-bottom: 32px;
  color: #fff;
}
.login-brand {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
}
.login-sub {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .65;
  margin-top: 4px;
}
.login-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 28px 24px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.login-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.login-inp {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  font-family: monospace;
  letter-spacing: 1px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  text-align: center;
  transition: border-color .15s;
}
.login-inp:focus { border-color: var(--accent); background: #fff; }
.login-inp::placeholder { font-weight: 400; font-size: 16px; letter-spacing: 0; color: #d1d5db; }
.login-error {
  margin-top: 10px;
  padding: 10px 14px;
  background: var(--red-bg);
  color: var(--red);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
.login-btn {
  margin-top: 16px;
  width: 100%;
  padding: 15px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  touch-action: manipulation;
  transition: opacity .15s;
}
.login-btn:active { opacity: .85; }
.login-btn:disabled { opacity: .55; cursor: not-allowed; }

/* ── Header action buttons ─────────────────────────────────── */
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.hdr-id-btn,
.hdr-logout {
  padding: 5px 14px;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: .2px;
  touch-action: manipulation;
}
.hdr-id-btn { background: rgba(255,255,255,.25); }
.hdr-id-btn:active,
.hdr-logout:active { background: rgba(255,255,255,.35); }

/* ── Manager note on property card ─────────────────────────── */
.card-note-wrap { }
.card-manager-note {
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: #fffbeb;
  border-left: 3px solid #f59e0b;
  padding: 8px 14px;
  font-size: 13px;
}
.card-note-label {
  font-size: 11px;
  font-weight: 700;
  color: #92400e;
  letter-spacing: .3px;
}
.card-note-arrival {
  font-size: 13px;
  font-weight: 600;
  color: #92400e;
}
.card-note-text {
  color: #78350f;
  line-height: 1.5;
}

/* ── ID Card overlay ───────────────────────────────────────── */
.idcard-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
}
.idcard-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 320px;
}
.idcard {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.idcard-header {
  background: var(--accent);
  padding: 20px 20px 18px;
  text-align: center;
  color: #fff;
}
.idcard-brand {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.idcard-dept {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: .7;
  margin-top: 3px;
}
.idcard-body {
  padding: 24px 20px 20px;
  text-align: center;
}
.idcard-photo-wrap {
  margin-bottom: 16px;
}
.idcard-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  display: block;
  margin: 0 auto;
}
.idcard-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 3px solid var(--accent);
}
.idcard-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 8px;
}
.idcard-role-pill {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.idcard-empid {
  font-family: monospace;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  background: var(--accent-light);
  padding: 8px 18px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 16px;
}
.idcard-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  background: var(--bg);
  border-radius: 12px;
  padding: 12px 14px;
}
.idcard-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.idcard-row-icon { font-size: 16px; flex-shrink: 0; }
.idcard-row-val  { font-weight: 600; }
.idcard-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 10px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.idcard-close {
  padding: 12px 32px;
  background: #fff;
  color: var(--text);
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

/* ── Toast ─────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  white-space: nowrap;
  max-width: 90vw;
  text-align: center;
}
.toast.show { opacity: 1; }

/* ── Push notification permission banner ─────────────────────────────────── */
.notif-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #eef2ff;
  border-bottom: 1px solid #c7d2fe;
  padding: 10px 16px;
  font-size: 13px;
  color: #3730a3;
  position: sticky;
  top: 0;
  z-index: 50;
}
.notif-banner-icon { font-size: 16px; flex-shrink: 0; }
.notif-banner-text { flex: 1; font-weight: 500; }
.notif-banner-allow {
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
}
.notif-banner-dismiss {
  background: none;
  border: none;
  color: #6366f1;
  font-size: 14px;
  cursor: pointer;
  padding: 2px 4px;
  flex-shrink: 0;
  line-height: 1;
}


/* ── Behaviour nudge banners ────────────────────────────── */
.beh-banner {
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  border-left: 5px solid transparent;
  animation: beh-in .3s ease, beh-blink 1.4s ease-in-out infinite;
}
@keyframes beh-in    { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }
@keyframes beh-blink { 0%,100% { opacity:1; } 50% { opacity:.55; } }
.beh-stern {
  background: #fef2f2;
  border-color: #dc2626;
  color: #7f1d1d;
}
.beh-warn {
  background: #fffbeb;
  border-color: #f59e0b;
  color: #78350f;
}
.beh-ok-btn {
  background: #f59e0b;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.beh-ok-btn:active { opacity: .8; }

/* ── Stern centre alert (quick-done warning) ─────────── */
.stern-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: beh-in .25s ease;
}
.stern-overlay.open { display: flex; }
.stern-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 22px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  position: relative;
  animation: beh-blink 1.4s ease-in-out 3;
}
.stern-card-emoji { font-size: 44px; margin-bottom: 12px; }
.stern-card-msg   { font-size: 15px; font-weight: 700; color: #7f1d1d; line-height: 1.5; margin-bottom: 20px; }
.stern-card-close {
  background: #dc2626;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 9px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}
.stern-card-close:active { opacity: .85; }
