body { font-family: "Inter", "Segoe UI", system-ui, Arial, sans-serif; margin: 0; background: #f5f7fb; color:#0f172a; }
.container { max-width: 1080px; margin: 28px auto; padding: 0 16px; }
.card { background: white; border-radius: 16px; padding: 18px; margin-bottom: 18px; box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06); border:1px solid rgba(15,23,42,0.04); }
.subcard { background:#fafafa; border:1px solid #eee; border-radius:12px; padding:12px; margin-top:10px; }
.hidden { display: none; }

/* Simple pill readout (used on create cup page) */
.pill { display:inline-flex; align-items:center; justify-content:center; padding:8px 12px; border-radius:999px; border:1px solid rgba(0,0,0,0.12); background:rgba(0,0,0,0.03); font-weight:700; min-height:44px; }

/* Champion banner (shown when all fixtures have scores) */
.champion-banner {
  position: relative;
  overflow: hidden;
  margin: 12px 0 16px;
  padding: 18px 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.22), rgba(255, 255, 255, 0.9));
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
}

.champion-banner .champion-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.champion-banner .champion-left {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 215, 0, 0.22);
  border: 1px solid rgba(0,0,0,.08);
}

.champion-banner .cup {
  font-size: 30px;
  line-height: 1;
}

.champion-banner .champion-kicker {
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 12px;
  font-weight: 800;
  opacity: 0.7;
}

.champion-banner .champion-name {
  font-weight: 900;
  font-size: 26px;
  line-height: 1.1;
}

.champion-banner .champion-sub {
  font-size: 12px;
  opacity: 0.75;
  margin-top: 4px;
}

.champion-banner.celebrate {
  animation: champion-pop 0.85s ease both;
}

@keyframes champion-pop {
  0% { transform: scale(0.98); }
  35% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* Confetti */
.confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.confetti-piece {
  position: absolute;
  top: -14px;
  border-radius: 2px;
  transform: translateX(0) rotate(var(--rot, 0deg));
  animation-name: confetti-fall;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes confetti-fall {
  0% {
    transform: translateX(0) translateY(-10px) rotate(var(--rot, 0deg));
  }
  100% {
    transform: translateX(var(--drift, 0px)) translateY(220px) rotate(calc(var(--rot, 0deg) + 520deg));
  }
}

@media (max-width: 520px) {
  .champion-banner {
    padding: 16px 14px;
  }

  .champion-banner .champion-left {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .champion-banner .cup { font-size: 26px; }
  .champion-banner .champion-name { font-size: 22px; }
}

.row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

/* Mobile-friendly rows: opt-in stack layout */
.row.mobile-stack { align-items: stretch; }

@media (max-width: 720px) {
  .row.mobile-stack { flex-direction: column; }
  .row.mobile-stack > input,
  .row.mobile-stack > select,
  .row.mobile-stack > textarea,
  .row.mobile-stack > button,
  .row.mobile-stack > a.btn {
    width: 100%;
  }

  /* Keep checkbox labels compact even in stacked rows */
  .row.mobile-stack .inline { width: auto; }
}

/* Checkbox/label alignment */
.inline { display: inline-flex; gap: 4px; align-items: center; }
.inline input[type="checkbox"] {
  margin: 0;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}
.colorRow { display:flex; gap:10px; align-items:center; margin: 8px 0; }
.colorRow input { flex: 1; min-width: 200px; }

input, select, textarea { padding: 10px 12px; border: 1px solid #ddd; border-radius: 10px; font-family: inherit; }
input { flex: 1; min-width: 160px; }
textarea { width: 100%; }

/* Prevent global input styling from breaking checkboxes/radios */
input[type="checkbox"], input[type="radio"] {
  padding: 0;
  border-radius: 4px;
  flex: unset;
  min-width: unset;
  width: 16px;
  height: 16px;
  margin: 0;
}

button { padding: 10px 12px; border: 0; border-radius: 10px; cursor: pointer; }
button.secondary { background: #eef2ff; color:#1f2937; }
.muted { color: #4b5563; }
.small { font-size: 12px; line-height: 1.2; }

.danger { color: #b00020; font-weight: 600; }
input.invalid, textarea.invalid, select.invalid {
  border-color: rgba(176, 0, 32, 0.65);
  background: rgba(176, 0, 32, 0.06);
}

/* Club entry box sizing (Create page) */
textarea#clubs {
  min-height: 140px;
  max-height: 220px;
  resize: vertical;
}

table { width: 100%; border-collapse: collapse; }
th, td { padding: 8px; border-bottom: 1px solid #eee; text-align: left; }
th.num, td.num { text-align: right; }

/* Table row highlights */
tr.row-green td { background: rgba(0, 128, 0, 0.12); }
tr.row-blue td { background: rgba(0, 0, 255, 0.10); }
tr.row-purple td { background: rgba(128, 0, 128, 0.10); }
tr.row-red td { background: rgba(255, 0, 0, 0.10); }
tr.row-orange td { background: rgba(255, 165, 0, 0.14); }

/* Form dots */
.form-dots { display: inline-flex; gap: 6px; align-items: center; }
.form-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.15);
  display: inline-block;
}
.form-dot.w { background: rgba(0, 160, 0, 0.75); }
.form-dot.d { background: rgba(120, 120, 120, 0.55); }
.form-dot.l { background: rgba(220, 0, 0, 0.70); }

.round { margin: 12px 0; }
.round h3 { margin: 12px 0 6px; }

.match { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px; background: #fafafa; border: 1px solid #eee; border-radius: 10px; margin: 6px 0; }
.match-left { flex: 1; }
.scorebox { display: flex; align-items: center; gap: 6px; }
.scorebox input { width: 54px; text-align: center; padding: 8px 8px; flex: unset; min-width: unset; }
.scorebox button { padding: 8px 10px; }

/* Mobile standings cards */
.standings-table { display: block; }
.standings-cards { display: none; }

.standing-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px;
  background: #fafafa;
  margin: 10px 0;
}
.standing-card .top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.standing-card .team {
  font-weight: 700;
}
.standing-card .pos {
  font-weight: 700;
  color: #333;
}
.standing-card .meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.standing-card .kv {
  background: white;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 8px;
}
.standing-card .k { font-size: 11px; color: #666; }
.standing-card .v { font-size: 14px; font-weight: 700; }

/* color highlights for cards (match the table) */
.standing-card.row-green { background: rgba(0, 128, 0, 0.08); }
.standing-card.row-blue { background: rgba(0, 0, 255, 0.06); }
.standing-card.row-purple { background: rgba(128, 0, 128, 0.06); }
.standing-card.row-red { background: rgba(255, 0, 0, 0.06); }
.standing-card.row-orange { background: rgba(255, 165, 0, 0.08); }

@media (max-width: 720px) {
  .standings-table { display: none; }
  .standings-cards { display: block; }
  .standing-card .meta { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  /* Fixtures: make rows easier to use on mobile */
  .match { align-items: stretch; }
  .match-left { width: 100%; }
  .scorebox { width: 100%; justify-content: flex-end; flex-wrap: wrap; }
  .scorebox input { width: 72px; min-height: 44px; }
  .scorebox button { flex: 1; min-height: 44px; }

  /* Tap-to-expand behavior (JS toggles .collapsed) */
  .match.collapsed .scorebox { display: none; }
  .match.tap-toggle { cursor: pointer; }
}

.bracket { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 4px; }
.bracket-round { min-width: 220px; background: #fafafa; border: 1px solid #eee; border-radius: 12px; padding: 10px; }
.bracket-round .round-title { font-weight: 800; margin: 0 0 8px; }
.bracket-match { border: 1px solid #e5e5e5; border-radius: 10px; padding: 10px; background: white; margin-bottom: 8px; }
.bracket-match .team { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.bracket-match .name { font-weight: 600; }
.bracket-match .score { font-weight: 800; }
.bracket-match .leg-note { margin-top: 6px; }

.notice {
    border-radius: 10px;
    padding: 10px 12px;
    margin: 8px 0;
    font-size: 14px;
  }

/* Simulation overlay */
.sim-card { max-width: 640px; }
.sim-row { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:12px; }
.sim-team { font-weight:800; width:32%; font-size:18px; }
.sim-center { flex:1; text-align:center; display:flex; flex-direction:column; gap:6px; align-items:center; }
.sim-timer { font-weight:900; font-size:18px; }
.sim-score { font-size:32px; font-weight:900; text-align:center; }
.sim-goal { font-size:20px; font-weight:900; color:#d22; }
.sim-goal.crowd { animation: crowd-pop 0.7s ease; }
.sim-goal.var-letters { font-size: 32px; letter-spacing: 6px; }
.sim-rosters { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 12px 0 4px; }
.sim-rosters textarea { width: 100%; min-height: 120px; }
.sim-rosters-note { grid-column: 1 / -1; }
.sim-inputs { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 10px; margin: 10px 0; }
.sim-inputs.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sim-inputs label { display:block; font-size:12px; color:#555; margin-bottom:4px; }
.sim-actions { display:flex; gap:8px; margin:10px 0; }
.sim-stats { display:flex; gap:10px; justify-content:space-between; margin:8px 0; font-size:12px; color:#333; }
.sim-stat-box { flex:1; background:#f8f8f8; border:1px solid #eee; border-radius:8px; padding:8px; }
.sim-timeline { display:flex; gap:10px; justify-content:space-between; margin:8px 0; }
.sim-goal.crowd { animation: crowd-pop 0.7s ease; }
@keyframes crowd-pop {
  0% { transform: scale(0.9); opacity: 0; }
  35% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 0.9; }
}
.sim-inline-timeline { margin-top: 4px; min-height: 18px; }
  
  .notice.warn {
    background: #fff4e5;
    border: 1px solid #ffd9a8;
    color: #7a4b00;
  }
  
  .notice.info {
    background: #eef6ff;
    border: 1px solid #cfe2ff;
    color: #084298;
  }
/* --- Home page polish (index.html) --- */
/* The home page gets a more "app-like" look, without affecting other pages.
   Everything is scoped to .home and its children. */
.home {
  position: relative;
  min-height: calc(100vh - 48px);
  padding-top: 8px;
}

.home::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 420px at 12% 10%, rgba(37, 99, 235, .18), transparent 60%),
    radial-gradient(900px 420px at 88% 18%, rgba(124, 58, 237, .14), transparent 60%),
    radial-gradient(900px 420px at 55% 92%, rgba(16, 185, 129, .10), transparent 60%);
}

.home-hero {
  text-align: center;
  margin: 10px 0 16px;
}

.home-hero h1 {
  margin: 10px 0 8px;
  letter-spacing: -0.03em;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.home-hero .muted {
  max-width: 68ch;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eef2ff, #e0f2fe);
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 12px 26px rgba(15,23,42,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color:#0f172a;
}

.home-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: start;
  margin-top: 14px;
}

.home-panel {
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.panel-head h2 {
  margin: 0;
}

.panel-head p {
  margin: 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cta-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 12px 24px rgba(2, 6, 23, .07);
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}

.cta-card.primary {
  color: white;
  border: 0;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 18px 40px rgba(37, 99, 235, .20), 0 10px 22px rgba(124, 58, 237, .14);
}

.cta-card:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 18px 42px rgba(2, 6, 23, .12);
}

.cta-card:active {
  transform: translateY(0);
  filter: brightness(0.99);
}

.cta-card:focus-visible {
  outline: 3px solid rgba(59, 130, 246, .45);
  outline-offset: 2px;
}

.cta-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(2, 6, 23, .06);
  font-size: 18px;
}

.cta-card.primary .cta-icon {
  background: rgba(255,255,255,.18);
}

.cta-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.cta-title {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.cta-sub {
  font-size: 13px;
  opacity: .85;
}

.cta-arrow {
  margin-left: auto;
  font-weight: 900;
  opacity: .75;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.10), transparent);
  margin: 14px 0;
}

.subhead {
  margin: 0 0 8px;
}

.tip {
  margin-top: 10px;
}

.steps {
  margin: 0;
  padding-left: 18px;
  color: #555;
}

.steps li { margin: 10px 0; }

.home .row {
  gap: 10px;
}

.home input#viewId {
  min-width: 240px;
}

.home-foot {
  text-align: center;
  margin: 12px 0 4px;
}

@media (max-width: 860px) {
  .home-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .cta-grid { grid-template-columns: 1fr; }
  .panel-head { flex-direction: column; align-items: flex-start; }
}

/* Button styles (used on the home page CTAs) */
.btn {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: 14px;
  padding: 12px 16px;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  user-select: none;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease, background .12s ease, border-color .12s ease;
}

.btn:focus-visible {
  outline: 3px solid rgba(59, 130, 246, .45);
  outline-offset: 2px;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.btn.btn-primary {
  color: white;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 10px 22px rgba(37, 99, 235, .18), 0 6px 14px rgba(124, 58, 237, .14);
}

.btn.btn-secondary {
  color: #0f172a;
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 10px 22px rgba(2, 6, 23, .08);
}

.btn.btn-ghost {
  color: #0f172a;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .12);
}

/* --- Shared "app page" chrome (opt-in via body.page) --- */
body.page {
  position: relative;
  min-height: 100vh;
}

/* body.page::before removed for performance */

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.95);
}

@media (max-width: 520px) {
  .topbar { flex-wrap: wrap; }
  .topbar-title { width: 100%; order: 3; }
}

.toplink {
  text-decoration: none;
  color: #0f172a;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255,255,255,.9);
}

.toplink:hover { filter: brightness(1.02); }

.topbar-title {
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.page-hero {
  text-align: center;
  margin: 18px 0 16px;
}

.page-hero h1 {
  margin: 10px 0 8px;
  letter-spacing: -0.03em;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.05;
}

.page-hero .muted {
  max-width: 68ch;
  margin: 0 auto;
}

/* --- Create page styling (scoped) --- */
.page-create .card {
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(2, 6, 23, .08);
}

.page-create .subcard {
  background: rgba(248, 250, 252, .85);
  border: 1px solid rgba(15, 23, 42, .08);
}

.page-create input,
.page-create select,
.page-create textarea {
  border-color: rgba(15, 23, 42, .12);
  background: rgba(255,255,255,.95);
}

.page-create input:focus,
.page-create select:focus,
.page-create textarea:focus {
  outline: 3px solid rgba(59, 130, 246, .25);
  border-color: rgba(59, 130, 246, .45);
}

.page-create h2 {
  margin-top: 0;
  letter-spacing: -0.01em;
}

/* --- List + Competition page styling (scoped) --- */
.page-list .card,
.page-competition .card {
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.98);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(2, 6, 23, .06);
}

.page-list input,
.page-competition input,
.page-competition select {
  border-color: rgba(15, 23, 42, .12);
  background: rgba(255,255,255,.95);
}

.page-list input:focus,
.page-competition input:focus,
.page-competition select:focus {
  outline: 3px solid rgba(59, 130, 246, .25);
  border-color: rgba(59, 130, 246, .45);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 14px;
}

/* Mobile competition list cards (competitions.html) */
.list-table { display: block; }
.list-cards { display: none; }

.list-card {
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(248, 250, 252, .85);
  border-radius: 16px;
  padding: 12px;
  margin: 10px 0;
}

.list-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.list-card-title {
  font-weight: 850;
  letter-spacing: -0.01em;
  margin: 0;
}

.list-card-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.list-card-meta .kv {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 12px;
  padding: 10px;
}

.list-card-meta .k { font-size: 11px; color: #64748b; }
.list-card-meta .v { font-size: 13px; font-weight: 750; }

.list-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.list-card-actions a.btn { flex: 1; }

@media (max-width: 720px) {
  .list-table { display: none; }
  .list-cards { display: block; }
}

/* Slightly nicer tables (keeps existing colors/highlights) */
table {
  background: rgba(255,255,255,.98);
  border-radius: 14px;
  overflow: hidden;
}

thead th {
  background: rgba(2, 6, 23, .04);
  font-weight: 800;
  letter-spacing: -0.01em;
}

tbody tr:hover td {
  background: rgba(37, 99, 235, .06);
}

/* Link styling inside tables */
table a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}

table a:hover {
  text-decoration: underline;
}

/* Inline keyboard-ish pill */
.kbd {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .12);
  background: rgba(255,255,255,.75);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
}

/* ------------------------------
   How-to overlay (EN/NL)
   ------------------------------ */

body.modal-open {
  overflow: hidden;
}

.overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(2, 6, 23, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
}

.overlay.hidden {
  display: none;
}

.overlay-card {
  width: min(760px, 100%);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
  overflow: hidden;
}

.overlay-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 12px;
}

.overlay-title {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.lang-toggle {
  display: inline-flex;
  background: rgba(2, 6, 23, .06);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}

.lang-toggle button {
  border: 0;
  background: transparent;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  color: rgba(15, 23, 42, .75);
}

.lang-toggle button.active {
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  color: #0f172a;
}

.overlay-body {
  padding: 0 18px 12px;
  color: rgba(15, 23, 42, .9);
}

.overlay-body p {
  margin: 10px 0;
}

.overlay-body ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.overlay-body li {
  margin: 8px 0;
}

.overlay-actions {
  display: flex;
  justify-content: flex-end;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(15, 23, 42, .08);
  background: rgba(255,255,255,.75);
}

.overlay-note {
  font-size: 12px;
  color: rgba(15, 23, 42, .6);
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

