/* ===== 求人マッチング支援システム UI ===== */
:root {
  --bg: #f6f7fb;
  --bg-grad-1: #eef2ff;
  --bg-grad-2: #f6f7fb;
  --card: #ffffff;
  --line: #e6e8ef;
  --line-strong: #d6d9e4;
  --ink: #1c2333;
  --ink-soft: #48506a;
  --muted: #8a90a6;
  --brand: #4f46e5;
  --brand-2: #7c3aed;
  --brand-ink: #ffffff;
  --ok: #16a34a;
  --mid: #d97706;
  --ng: #dc2626;
  --warn: #b45309;
  --own: #0d9488;
  --ext: #7c3aed;
  --chip-bg: #f1f3fb;
  --shadow: 0 1px 2px rgba(20,25,50,.04), 0 8px 24px rgba(20,25,50,.06);
  --shadow-lg: 0 10px 30px rgba(20,25,50,.10);
  --radius: 16px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1220; --bg-grad-1: #171a2e; --bg-grad-2: #0f1220;
    --card: #191c2e; --line: #2a2e44; --line-strong: #363b56;
    --ink: #eef0f8; --ink-soft: #c2c7db; --muted: #8b90a8;
    --brand: #7c83ff; --brand-2: #a78bfa; --chip-bg: #22263c;
    --shadow: 0 1px 2px rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.35);
    --shadow-lg: 0 12px 32px rgba(0,0,0,.45);
    --own: #2dd4bf; --ext: #a78bfa;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink);
  background: linear-gradient(180deg, var(--bg-grad-1) 0%, var(--bg-grad-2) 340px);
  min-height: 100vh;
  font-family: "Segoe UI", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Meiryo", system-ui, sans-serif;
  line-height: 1.65; font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

/* ---- Header ---- */
header {
  background: linear-gradient(115deg, #4f46e5 0%, #7c3aed 55%, #9333ea 100%);
  color: #fff; box-shadow: var(--shadow-lg);
}
.header-inner {
  max-width: 960px; margin: 0 auto; padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 14px; }
.logo {
  font-size: 26px; width: 48px; height: 48px; flex: none;
  display: grid; place-items: center; border-radius: 14px;
  background: rgba(255,255,255,.16); backdrop-filter: blur(4px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
header h1 { margin: 0; font-size: 20px; font-weight: 700; letter-spacing: .2px; }
.tagline { margin: 2px 0 0; font-size: 12.5px; color: rgba(255,255,255,.82); }
.header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; max-width: 100%; }
.status {
  font-size: 12px; color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
  padding: 8px 12px; border-radius: 10px; max-width: 100%;
}
.status .warn { color: #ffd9a8; }

/* ---- Layout ---- */
main { max-width: 960px; margin: 26px auto; padding: 0 18px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; margin-bottom: 20px; box-shadow: var(--shadow);
  transition: box-shadow .2s ease;
}
.card:hover { box-shadow: var(--shadow-lg); }
.card h2 {
  margin: 0 0 14px; font-size: 16px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.step {
  width: 26px; height: 26px; flex: none; border-radius: 8px;
  display: grid; place-items: center; font-size: 13px; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 2px 8px rgba(79,70,229,.35);
}
.hint { color: var(--muted); font-size: 12.5px; margin: 0 0 12px; }
.row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.msg { margin-top: 12px; font-size: 13px; }

/* ---- Inputs ---- */
textarea, input {
  width: 100%; padding: 10px 12px; color: var(--ink);
  background: var(--card); border: 1px solid var(--line-strong);
  border-radius: 10px; font-family: inherit; font-size: 14px; transition: border-color .15s, box-shadow .15s;
}
textarea { resize: vertical; }
textarea:focus, input:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 20%, transparent);
}
textarea::placeholder, input::placeholder { color: var(--muted); }

/* ---- Buttons ---- */
button { border: none; border-radius: 10px; padding: 10px 18px; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: transform .08s ease, box-shadow .15s, background .15s, filter .15s; }
button:active { transform: translateY(1px); }
.primary {
  color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 4px 14px rgba(79,70,229,.35);
}
.primary:hover { filter: brightness(1.06); box-shadow: 0 6px 18px rgba(79,70,229,.45); }
.primary:disabled { background: #9aa1c4; box-shadow: none; cursor: default; filter: none; }
.secondary {
  background: var(--chip-bg); color: var(--ink-soft);
  border: 1px solid var(--line-strong);
}
.secondary:hover { border-color: var(--brand); color: var(--brand); }
.secondary.jm { background: color-mix(in srgb, #7c3aed 12%, var(--card)); color: #7c3aed; border-color: color-mix(in srgb,#7c3aed 30%,transparent); }
.secondary.bt { background: color-mix(in srgb, #dc2626 10%, var(--card)); color: #dc2626; border-color: color-mix(in srgb,#dc2626 30%,transparent); }
.secondary.ht { background: color-mix(in srgb, #0d9488 12%, var(--card)); color: #0f766e; border-color: color-mix(in srgb,#0d9488 30%,transparent); }
.secondary.jm:hover, .secondary.bt:hover, .secondary.ht:hover { filter: brightness(1.04); }
.secondary.clear { background: transparent; color: var(--muted); border-style: dashed; }
.secondary.clear:hover { color: var(--ng); border-color: var(--ng); }
.secondary.geo { background: color-mix(in srgb, #0ea5e9 12%, var(--card)); color: #0369a1; border-color: color-mix(in srgb,#0ea5e9 30%,transparent); }
.secondary.geo:hover { filter: brightness(1.04); }
.secondary.geo:disabled { opacity: .55; cursor: default; }
.secondary:disabled { opacity: .55; cursor: default; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 14px; }
.actions .profile { font-size: 12px; color: var(--muted); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.actions .profile select { padding: 8px 10px; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--card); color: var(--ink); font-size: 13px; font-family: inherit; }

.upload {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--chip-bg); color: var(--ink-soft); border: 1px dashed var(--line-strong);
  border-radius: 10px; padding: 9px 15px; cursor: pointer; font-size: 13.5px; font-weight: 600;
  transition: border-color .15s, color .15s;
}
.upload:hover { border-color: var(--brand); color: var(--brand); }
.upload.ext { background: color-mix(in srgb, var(--ext) 8%, var(--card)); }
.upload input { display: none; }
.upload-ic { font-size: 14px; }
.tmpl-link { display: inline-flex; align-items: center; font-size: 13px; font-weight: 600; color: var(--brand); text-decoration: none; padding: 9px 4px; }
.tmpl-link:hover { text-decoration: underline; }

/* ---- Seeker form ---- */
.form-details { margin-top: 14px; border-top: 1px solid var(--line); padding-top: 6px; }
.form-details summary {
  cursor: pointer; color: var(--brand); font-size: 13.5px; font-weight: 600;
  padding: 8px 0; list-style: none; user-select: none;
}
.form-details summary::-webkit-details-marker { display: none; }
.form-details summary::before { content: "▸ "; }
.form-details[open] summary::before { content: "▾ "; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 10px; }
.grid label { font-size: 12px; color: var(--muted); display: flex; flex-direction: column; gap: 4px; font-weight: 600; }
.grid label.wide { grid-column: 1 / -1; }

.hidden { display: none; }
.warn, .warn-inline { color: var(--warn); }

/* ---- Result summary ---- */
.rctrl { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin: 4px 0 14px; padding: 10px 14px; background: var(--chip-bg); border: 1px solid var(--line); border-radius: 10px; }
.rctrl label { font-size: 12px; color: var(--muted); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.rctrl select { padding: 6px 10px; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--card); color: var(--ink); font-size: 13px; font-family: inherit; }
.card-actions { display: flex; gap: 8px; align-items: center; margin-top: 12px; flex-wrap: wrap; }
.card-actions .detail-btn { margin-top: 0; }
.copy-btn { padding: 7px 14px; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); background: var(--chip-bg); border: 1px solid var(--line-strong); border-radius: 999px; }
.copy-btn:hover { border-color: var(--brand); color: var(--brand); }
.job-meta a { color: var(--brand); text-decoration: none; font-weight: 600; }
#qualMissing h3 { font-size: 13.5px; margin: 20px 0 6px; color: #b45309; }

.result-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.result-head h2 { margin: 0; }
#btnExport { white-space: nowrap; }

.stats { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.stats .tile {
  background: var(--chip-bg); border: 1px solid var(--line); border-radius: 12px;
  padding: 9px 14px; font-size: 12px; color: var(--muted); font-weight: 600;
}
.stats .tile b { display: block; font-size: 15px; color: var(--ink); font-weight: 700; margin-top: 1px; }

.funnel { margin-bottom: 6px; }
.funnel-bar { display: flex; height: 34px; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.funnel-seg { display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 700; min-width: 44px; }
.funnel-seg.total { background: #94a3b8; }
.funnel-seg.open  { background: #6366f1; }
.funnel-seg.pass  { background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.funnel-legend { color: var(--muted); font-size: 11.5px; margin-top: 6px; }

.notice {
  background: color-mix(in srgb, var(--mid) 12%, var(--card));
  border: 1px solid color-mix(in srgb, var(--mid) 35%, transparent); color: var(--warn);
  padding: 10px 14px; border-radius: 10px; margin: 10px 0; font-size: 12.5px;
}

.wp-count { color: var(--brand); font-weight: 700; font-size: 12px; margin-left: 6px; }
.wp-groups { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.wp-group { display: grid; grid-template-columns: 110px 1fr; gap: 10px; align-items: start; }
.wp-group-name { font-size: 12px; font-weight: 700; color: var(--muted); padding-top: 4px; }
.wp-items { display: flex; flex-wrap: wrap; gap: 6px; }
.wp-item {
  display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--ink-soft);
  padding: 5px 10px; border: 1px solid var(--line-strong); border-radius: 999px;
  background: var(--card); cursor: pointer;
}
.wp-item:hover { border-color: var(--brand); color: var(--brand); }
.wp-item:has(input:checked) { border-color: var(--brand); color: var(--brand); background: var(--chip-bg); font-weight: 700; }
.wp-clear { margin-top: 10px; }
@media (max-width: 640px) { .wp-group { grid-template-columns: 1fr; gap: 4px; } }

.gaps {
  background: color-mix(in srgb, var(--warn) 10%, var(--card));
  border: 1px solid color-mix(in srgb, var(--warn) 40%, transparent);
  padding: 12px 16px; border-radius: 10px; margin: 10px 0; font-size: 12.5px; color: var(--ink-soft);
}
.gaps > b { color: var(--warn); display: block; margin-bottom: 6px; }
.gaps ul { margin: 0; padding-left: 18px; }
.gaps li { margin: 3px 0; line-height: 1.6; }
.gaps li b { color: var(--ink); }
.gaps-hint { display: block; margin-top: 8px; color: var(--muted); font-size: 11.5px; }
/* 未入力（薄い）と 読み取れず（強い）を見た目で区別する（2026-08-25） */
.gap-tag {
  display: inline-block; font-size: 10.5px; font-weight: 700; line-height: 1.5;
  padding: 0 6px; border-radius: 999px; margin-right: 4px; white-space: nowrap;
}
.gap-tag.empty { background: color-mix(in srgb, var(--muted) 22%, transparent); color: var(--ink-soft); }
.gap-tag.unparsed { background: color-mix(in srgb, var(--warn) 24%, transparent); color: var(--warn); }

/* ---- Job card ---- */
.job {
  border: 1px solid var(--line); border-radius: 14px; padding: 16px; margin: 12px 0;
  background: var(--card); box-shadow: var(--shadow); position: relative;
  transition: transform .12s ease, box-shadow .18s ease, border-color .18s ease;
  animation: rise .35s ease both;
}
.job:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.job-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.rank {
  width: 30px; height: 30px; flex: none; border-radius: 9px; font-size: 13px; font-weight: 700;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, #334155, #1e293b);
}
.job:nth-child(1) .rank { background: linear-gradient(135deg, #f59e0b, #d97706); }
.job:nth-child(2) .rank { background: linear-gradient(135deg, #9ca3af, #6b7280); }
.job:nth-child(3) .rank { background: linear-gradient(135deg, #b45309, #92400e); }
.score {
  font-weight: 800; font-size: 15px; color: var(--brand);
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  padding: 2px 10px; border-radius: 999px;
}
.title { font-weight: 700; font-size: 14.5px; flex: 1 1 auto; min-width: 180px; }
.src { font-size: 10.5px; padding: 2px 9px; border-radius: 999px; color: #fff; font-weight: 700; letter-spacing: .3px; }
.src.own { background: var(--own); }
.src.ext { background: var(--ext); }

/* 登録済み求人ファイルの一覧 */
.mfiles { margin: 10px 0 4px; }
.mfiles-head { font-size: 12.5px; font-weight: 700; color: var(--ink-soft); margin-bottom: 6px; }
.mfile { display: flex; align-items: center; gap: 10px; padding: 6px 10px; border-radius: 8px;
         background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); margin-bottom: 4px; }
.mfile-name { flex: 1; font-size: 12.5px; word-break: break-all; }
.mfile-count { font-size: 12px; color: var(--ink-soft); white-space: nowrap; }
.mfile-del { font-size: 11.5px; padding: 3px 10px; border-radius: 6px; cursor: pointer;
             background: transparent; color: var(--warn); border: 1px solid var(--warn); }
.mfile-del:hover { background: var(--warn); color: #241a00; }

/* ユーザ指定ID（AHK等）の記号バッジ＋注意書き */
.utag-line { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin: 8px 0 0; }
.utag { font-size: 11px; font-weight: 800; letter-spacing: .5px; padding: 2px 9px; border-radius: 6px;
        background: var(--warn); color: #241a00; }
.utag-note { font-size: 12.5px; font-weight: 700; color: var(--warn); }

.job-meta { display: flex; gap: 8px 14px; flex-wrap: wrap; color: var(--ink-soft); font-size: 12.5px; margin: 10px 0; align-items: center; }
.job-meta a { color: var(--brand); text-decoration: none; font-weight: 600; }
.job-meta a:hover { text-decoration: underline; }
.phone {
  font-weight: 700; color: var(--own);
  background: color-mix(in srgb, var(--own) 12%, transparent);
  padding: 2px 10px; border-radius: 999px;
}
.phone a { color: var(--own) !important; }
.phone.none { color: var(--muted); background: var(--chip-bg); font-weight: 600; }
.warn-inline {
  font-weight: 700; background: color-mix(in srgb, var(--ng) 12%, transparent);
  color: var(--ng); padding: 1px 8px; border-radius: 999px;
}

.breakdown { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  background: var(--chip-bg); border: 1px solid var(--line); border-radius: 999px;
  padding: 3px 11px; font-size: 11.5px; color: var(--ink-soft); font-weight: 600;
}

/* ---- Detail toggle & panel ---- */
.detail-btn {
  margin-top: 12px; padding: 7px 14px; font-size: 12.5px; font-weight: 700;
  color: var(--brand); background: color-mix(in srgb, var(--brand) 8%, var(--card));
  border: 1px solid color-mix(in srgb, var(--brand) 30%, transparent); border-radius: 999px;
}
.detail-btn:hover { background: color-mix(in srgb, var(--brand) 15%, var(--card)); }
.detail { display: none; margin-top: 14px; border-top: 1px solid var(--line); padding-top: 12px; }
.detail.open { display: block; animation: rise .25s ease both; }
.detail-sec { margin-bottom: 16px; }
.detail-sec h4 {
  margin: 0 0 8px; font-size: 13px; font-weight: 700; color: var(--ink);
  display: inline-block; padding-bottom: 3px;
  border-bottom: 2px solid color-mix(in srgb, var(--brand) 55%, transparent);
}
.points { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.points li {
  font-size: 13px; color: var(--ink-soft); padding: 8px 12px;
  background: var(--chip-bg); border-radius: 10px; border: 1px solid var(--line);
}
.points li b { color: var(--ink); font-weight: 700; margin-right: 4px; }
.pt-score { color: var(--brand); font-weight: 700; font-size: 12px; }
.dgrid { margin: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.drow { display: grid; grid-template-columns: 140px 1fr; background: var(--card); }
.drow dt { padding: 9px 12px; font-size: 12px; font-weight: 700; color: var(--muted); background: var(--chip-bg); }
.drow dd { padding: 9px 12px; margin: 0; font-size: 13px; color: var(--ink); white-space: pre-wrap; word-break: break-word; }
.detail-link { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--brand); text-decoration: none; }
.detail-link:hover { text-decoration: underline; }
@media (max-width: 560px) { .drow { grid-template-columns: 1fr; } .drow dt { padding-bottom: 2px; } }

/* ---- AI block ---- */
.ai { margin-top: 12px; border-top: 1px dashed var(--line); padding-top: 12px; }
.ai-block { margin-bottom: 10px; font-size: 13.5px; }
.ai-block b { display: inline-block; margin-bottom: 3px; font-size: 12px; color: var(--muted); text-transform: none; letter-spacing: .3px; }
.ai-block p { margin: 2px 0; }
.ai-block ul { margin: 4px 0; padding-left: 18px; }
.fit { padding: 2px 10px; border-radius: 999px; font-size: 11.5px; color: #fff; font-weight: 700; }
.fit.ok { background: var(--ok); }
.fit.mid { background: var(--mid); }
.fit.ng { background: var(--ng); }

#nearMiss h3 { font-size: 13.5px; margin: 20px 0 6px; color: var(--ink-soft); }

.foot { text-align: center; color: var(--muted); font-size: 11.5px; padding: 8px 0 28px; }

/* ---- Login page ---- */
.login-wrap { min-height: 100vh; display: grid; place-items: center; padding: 20px; }
.login-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 32px 28px; width: 100%; max-width: 360px;
  display: flex; flex-direction: column; gap: 12px; text-align: center;
}
.login-logo { font-size: 34px; }
.login-card h1 { margin: 0; font-size: 18px; }
.login-sub { margin: 0 0 6px; color: var(--muted); font-size: 12.5px; }
.login-card input { text-align: center; }
.login-card .primary { margin-top: 4px; }
.login-error {
  background: color-mix(in srgb, var(--ng) 12%, transparent);
  color: var(--ng); border: 1px solid color-mix(in srgb, var(--ng) 30%, transparent);
  border-radius: 8px; padding: 8px; font-size: 13px;
}
.logout-link { color: rgba(255,255,255,.85); font-size: 12px; text-decoration: none; }
.logout-link:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .grid { grid-template-columns: 1fr; }
  .header-inner { flex-direction: column; align-items: flex-start; }
  .card { padding: 18px 16px; }
}


/* ===== 地図（結果の事業所をランク別ピンで表示。2026-08-27 追加） ===== */
.map-panel { margin: 10px 0 16px; }
.map-head {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 8px;
}
.map-legend { display: flex; gap: 12px; flex-wrap: wrap; font-size: 12px; color: var(--muted, #64748b); }
.map-legend span { display: inline-flex; align-items: center; gap: 5px; }
.map-msg { font-size: 12px; color: var(--muted, #64748b); }
.pin-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; border: 1px solid rgba(0,0,0,.25); }
.pin-dot.home { background: #212529; }
.pin-dot.a { background: #e03131; }
.pin-dot.b { background: #f2b705; }
.pin-dot.c { background: #1c7ed6; }
.pin-dot.s { background: #2f9e44; }
.pin-dot.other { background: #868e96; }
#map { height: 460px; border-radius: 12px; border: 1px solid var(--line, #e2e8f0); z-index: 0; }
.pin-icon { background: none; border: none; }
.pin-icon .pin {
  width: 24px; height: 24px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 12px;
  border: 1.5px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.35);
}
.pin-icon .pin i { transform: rotate(45deg); font-style: normal; line-height: 1; }
.mpop { font-size: 12.5px; line-height: 1.6; }
.mpop-head { font-size: 13.5px; margin-bottom: 2px; }

/* 求人ランクのバッジ（カード見出し。地図のピン色と対応） */
.band {
  width: 22px; height: 22px; flex: none; border-radius: 6px; color: #fff;
  font-size: 12px; font-weight: 800; display: grid; place-items: center;
}
.band-A { background: #e03131; }
.band-B { background: #f2b705; color: #3b2f00; }
.band-C { background: #1c7ed6; }
.band-S { background: #2f9e44; }
.band-other { background: #868e96; }


/* リスト出力の被り警告（2026-08-28） */
.owner-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: flex-end; margin: 6px 0 2px; }
.owner-row label { display: flex; flex-direction: column; gap: 4px; font-size: 12px; font-weight: 600; }
.owner-row input { min-width: 190px; }
.owner-hint { flex: 1 1 260px; font-weight: 400; }
.dup {
  margin: 6px 0 2px; padding: 6px 10px; border-radius: 8px; font-size: 12.5px; font-weight: 600;
  background: color-mix(in srgb, #f2b705 18%, transparent);
  border: 1px solid color-mix(in srgb, #f2b705 55%, transparent);
}
.mpop-dup { margin-top: 4px; font-weight: 700; color: #b26b00; }
