:root{
  color-scheme: light;
  --chz-bg:#eef3fb;
  --chz-card:#ffffff;
  --chz-soft:#f8fafc;
  --chz-ink:#141c2f;
  --chz-text:#344054;
  --chz-muted:#667085;
  --chz-line:#dbe4ef;
  --chz-line-2:#edf2f7;
  --chz-blue:#355b9b;
  --chz-blue-2:#233d74;
  --chz-green:#0e9f6e;
  --chz-red:#c2453c;
  --chz-amber:#a87500;
  --chz-shadow:0 18px 48px rgba(31,48,82,.10);
  --chz-max:1180px;
}
html[data-upd-theme="dark"]{
  color-scheme: dark;
  --chz-bg:#0b0f18;
  --chz-card:#121722;
  --chz-soft:#171d29;
  --chz-ink:#f3f7ff;
  --chz-text:#d7deeb;
  --chz-muted:#929db0;
  --chz-line:#263040;
  --chz-line-2:#202938;
  --chz-blue:#6b87ff;
  --chz-blue-2:#536fe8;
  --chz-green:#35c894;
  --chz-red:#ff8b83;
  --chz-amber:#ffd36a;
  --chz-shadow:0 18px 48px rgba(0,0,0,.30);
}
*{box-sizing:border-box}
html{background:var(--chz-bg)}
body.chz-page{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at 0 0,rgba(255,220,150,.28),transparent 280px),
    radial-gradient(circle at 100% 0,rgba(75,110,220,.16),transparent 370px),
    var(--chz-bg);
  color:var(--chz-text);
  font-family:Manrope,Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  font-size:14px;
  line-height:1.45;
}
html[data-upd-theme="dark"] body.chz-page{
  background:
    radial-gradient(circle at 0 0,rgba(255,220,150,.06),transparent 280px),
    radial-gradient(circle at 100% 0,rgba(107,135,255,.12),transparent 370px),
    var(--chz-bg);
}
.chz-app{padding:18px clamp(14px,2.3vw,32px) 36px}
.chz-topbar{
  max-width:var(--chz-max);
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:9px 12px;
  border:1px solid var(--chz-line);
  border-radius:18px;
  background:rgba(255,255,255,.88);
  box-shadow:0 8px 22px rgba(31,48,82,.07);
  backdrop-filter:blur(14px);
}
html[data-upd-theme="dark"] .chz-topbar{background:rgba(18,23,34,.88)}
.chz-logo{display:flex;align-items:center;gap:11px;color:var(--chz-ink);text-decoration:none;font-weight:900;letter-spacing:.16em}
.chz-logo span{width:36px;height:36px;border-radius:11px;display:grid;place-items:center;background:linear-gradient(135deg,#19233a,var(--chz-blue));color:#fff}
.chz-logo b{font-size:12px}
.chz-nav{display:flex;align-items:center;justify-content:flex-end;gap:8px;flex-wrap:wrap}
.chz-nav a,.chz-theme-toggle{
  min-height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid transparent;
  border-radius:999px;
  padding:8px 12px;
  color:var(--chz-ink);
  text-decoration:none;
  font-weight:800;
  font-size:12px;
  background:transparent;
}
.chz-nav a.active{background:var(--chz-ink);color:var(--chz-card)}
html[data-upd-theme="dark"] .chz-nav a.active{background:var(--chz-blue);color:#fff}
.chz-theme-toggle{width:38px;padding:0;background:var(--chz-soft);border-color:var(--chz-line);cursor:pointer}
.theme-sun{display:inline}.theme-moon{display:none}
html[data-upd-theme="dark"] .theme-sun{display:none}
html[data-upd-theme="dark"] .theme-moon{display:inline}

.chz-hero,.chz-panel{
  max-width:var(--chz-max);
  margin:0 auto 16px;
  border:1px solid var(--chz-line);
  border-radius:18px;
  background:var(--chz-card);
  box-shadow:var(--chz-shadow);
}
.chz-hero{padding:34px 42px}
.chz-kicker{
  position:relative;
  margin:0 0 24px;
  padding-left:26px;
  color:#536aa6;
  font-size:11px;
  font-weight:900;
  letter-spacing:.26em;
  text-transform:uppercase;
}
.chz-kicker:before{
  content:'';
  position:absolute;
  left:0;
  top:50%;
  width:16px;
  height:1px;
  background:#536aa6;
}
.chz-hero h1{
  margin:0 0 20px;
  color:var(--chz-ink);
  font-size:34px;
  line-height:1.05;
  letter-spacing:-.035em;
}
.chz-hero p{max-width:640px;margin:0;color:var(--chz-muted);font-size:14px}

.chz-panel{padding:24px 26px}
.chz-section-title,.chz-results-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}
.chz-section-title h2,.chz-results-head h2{
  position:relative;
  margin:0 0 6px;
  color:var(--chz-ink);
  font-size:22px;
  font-weight:900;
  letter-spacing:-.025em;
}
.chz-section-title h2:before,.chz-results-head h2:before{
  content:'';
  display:inline-block;
  width:5px;
  height:5px;
  margin-right:9px;
  vertical-align:middle;
  border-radius:50%;
  background:var(--chz-blue);
}
.chz-section-title p,.chz-results-head p,.chz-results-head span{margin:0;color:var(--chz-muted);font-size:13px}
.chz-alert{padding:13px 15px;margin:0 0 14px;border-radius:14px;border:1px solid var(--chz-line);background:var(--chz-soft)}
.chz-alert.bad{border-color:rgba(194,69,60,.25);background:rgba(194,69,60,.08);color:var(--chz-red)}
.chz-alert ul{margin:8px 0 0;padding-left:18px}
.chz-field{display:block;margin-bottom:14px}
.chz-field span{
  display:block;
  margin:0 0 7px;
  color:var(--chz-muted);
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.chz-field input[type=file],.chz-field textarea{
  width:100%;
  border:1px solid var(--chz-line);
  border-radius:12px;
  background:var(--chz-soft);
  color:var(--chz-ink);
  padding:11px 12px;
  font:inherit;
  font-weight:700;
  outline:none;
}
.chz-field textarea{
  min-height:180px;
  resize:vertical;
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  font-size:13px;
  line-height:1.55;
}
.chz-field input:focus,.chz-field textarea:focus{border-color:var(--chz-blue);box-shadow:0 0 0 3px color-mix(in srgb,var(--chz-blue) 16%,transparent)}
.chz-input-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:var(--chz-muted);
  font-size:12px;
  margin:-4px 0 18px;
}
#codeCounter{font-weight:900}
#codeCounter.is-warn{color:var(--chz-red)}
.chz-captcha-card{margin:0 0 16px;padding:12px;border:1px solid var(--chz-line);border-radius:14px;background:var(--chz-soft);display:flex;justify-content:center;overflow:hidden}
.chz-actions{display:grid;grid-template-columns:1fr;gap:10px}
.chz-btn{
  min-height:44px;
  border:1px solid var(--chz-line);
  border-radius:12px;
  padding:11px 16px;
  font:inherit;
  font-weight:900;
  cursor:pointer;
  transition:none;
}
.chz-btn.primary{background:linear-gradient(135deg,var(--chz-blue),var(--chz-blue-2));border:0;color:#fff}
.chz-btn.secondary{background:linear-gradient(135deg,var(--chz-blue),var(--chz-blue-2));border:0;color:#fff}
.chz-btn:hover{transform:none;box-shadow:none}

.chz-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin:28px 0 22px;
}
.chz-stats article{
  min-height:64px;
  padding:0 0 0 18px;
  border-left:3px solid var(--chz-line);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.chz-stats article.turnover{border-left-color:var(--chz-green)}
.chz-stats article.retired{border-left-color:#9aa6b7}
.chz-stats article.notfound{border-left-color:var(--chz-amber)}
.chz-stats article.errors{border-left-color:var(--chz-red)}
.chz-stats b{display:block;color:var(--chz-ink);font-size:28px;line-height:1;font-weight:900}
.chz-stats span{margin-top:6px;color:var(--chz-muted);font-size:12px;font-weight:900;text-transform:lowercase}
.chz-table-wrap{overflow:auto;border:1px solid var(--chz-line);border-radius:12px}
.chz-table{width:100%;border-collapse:collapse;min-width:780px;background:var(--chz-card)}
.chz-table th{
  height:40px;
  padding:10px 14px;
  border-bottom:1px solid var(--chz-line);
  background:var(--chz-soft);
  color:var(--chz-muted);
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-align:left;
}
.chz-table td{
  padding:13px 14px;
  border-bottom:1px solid var(--chz-line);
  color:var(--chz-text);
  font-size:13px;
  vertical-align:middle;
}
.chz-table tr:last-child td{border-bottom:0}
.chz-table code{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;font-size:12.5px;color:var(--chz-ink)}
.status-pill{
  display:inline-flex;
  align-items:center;
  min-height:24px;
  padding:4px 9px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  white-space:nowrap;
}
.status-pill.ok{background:rgba(14,169,118,.13);color:var(--chz-green)}
.status-pill.bad{background:rgba(194,69,60,.12);color:var(--chz-red)}
.status-pill.warn,.status-pill.unknown{background:rgba(168,117,0,.13);color:var(--chz-amber)}
.chz-download-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-top:26px;
}
.chz-download-row p{margin:0;color:var(--chz-muted);font-size:13px}
.chz-download-row .chz-btn{min-width:150px}
@media(max-width:820px){
  .chz-app{padding:10px 8px 28px}
  .chz-topbar{align-items:flex-start;flex-direction:column}
  .chz-nav{width:100%;display:grid;grid-template-columns:1fr 1fr;gap:7px}
  .chz-nav a,.chz-theme-toggle{width:100%;background:var(--chz-soft);border-color:var(--chz-line);text-align:center}
  .chz-hero,.chz-panel{border-radius:16px;padding:16px}
  .chz-hero h1{font-size:30px}
  .chz-section-title,.chz-results-head,.chz-download-row{display:block}
  .chz-stats{grid-template-columns:1fr 1fr;gap:12px}
  .chz-download-row .chz-btn{width:100%;margin-top:14px}
}


/* CHZ large batch statistics and pagination */
.chz-stat-filter{
  appearance:none;
  border:0;
  background:transparent;
  text-align:left;
  min-height:64px;
  padding:0 0 0 18px;
  border-left:3px solid var(--chz-line);
  display:flex;
  flex-direction:column;
  justify-content:center;
  cursor:pointer;
  font:inherit;
}
.chz-stat-filter.turnover{border-left-color:var(--chz-green)}
.chz-stat-filter.retired{border-left-color:#9aa6b7}
.chz-stat-filter.notfound{border-left-color:var(--chz-amber)}
.chz-stat-filter.errors{border-left-color:var(--chz-red)}
.chz-stat-filter.active{
  border-radius:12px;
  background:var(--chz-soft);
  outline:1px solid var(--chz-line);
}
.chz-stat-filter b{display:block;color:var(--chz-ink);font-size:28px;line-height:1;font-weight:900}
.chz-stat-filter span{margin-top:6px;color:var(--chz-muted);font-size:12px;font-weight:900;text-transform:lowercase}

.chz-status-breakdown{
  margin:0 0 22px;
  padding:14px;
  border:1px solid var(--chz-line);
  border-radius:14px;
  background:var(--chz-soft);
}
.chz-breakdown-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.chz-breakdown-head b{color:var(--chz-ink);font-size:14px}
.chz-breakdown-head span{color:var(--chz-muted);font-size:12px;font-weight:800}
.chz-breakdown-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.chz-breakdown-chip{
  min-height:30px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid var(--chz-line);
  border-radius:999px;
  padding:5px 9px;
  background:var(--chz-card);
  color:var(--chz-text);
  font:inherit;
  font-size:12px;
  font-weight:850;
  cursor:pointer;
}
.chz-breakdown-chip b{
  display:inline-grid;
  min-width:24px;
  height:22px;
  place-items:center;
  border-radius:999px;
  background:var(--chz-soft);
  color:var(--chz-ink);
  font-size:11px;
}
.chz-breakdown-chip.turnover{border-color:rgba(14,169,118,.25)}
.chz-breakdown-chip.retired{border-color:rgba(154,166,183,.35)}
.chz-breakdown-chip.notfound{border-color:rgba(168,117,0,.25)}
.chz-breakdown-chip.errors{border-color:rgba(194,69,60,.25)}
.chz-breakdown-chip.active{
  background:var(--chz-ink);
  color:var(--chz-card);
}
.chz-breakdown-chip.active b{
  background:rgba(255,255,255,.16);
  color:inherit;
}
.chz-table-toolbar{
  margin:0 0 10px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto auto;
  gap:10px;
  align-items:center;
}
.chz-page-info{
  color:var(--chz-muted);
  font-size:13px;
  font-weight:900;
}
.chz-page-size label{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--chz-muted);
  font-size:12px;
  font-weight:850;
}
.chz-page-size select{
  min-height:36px;
  border:1px solid var(--chz-line);
  border-radius:10px;
  background:var(--chz-soft);
  color:var(--chz-ink);
  padding:6px 10px;
  font:inherit;
  font-size:12px;
  font-weight:850;
}
.chz-pager{
  display:flex;
  gap:6px;
}
.chz-pager .chz-btn{
  min-height:36px;
  padding:7px 11px;
}
.chz-btn:disabled{
  opacity:.45;
  cursor:not-allowed;
}
.chz-table td:first-child,
.chz-table th:first-child{
  width:58px;
  text-align:right;
  color:var(--chz-muted);
}
@media(max-width:820px){
  .chz-table-toolbar{
    grid-template-columns:1fr;
  }
  .chz-page-size label,
  .chz-pager{
    width:100%;
  }
  .chz-page-size select,
  .chz-pager .chz-btn{
    flex:1;
  }
  .chz-breakdown-head{
    align-items:flex-start;
    flex-direction:column;
  }
}


/* compact async CHZ UI */
.chz-stats.compact,
.chz-stats{
  grid-template-columns:repeat(5,minmax(120px,1fr));
  gap:10px;
  margin:18px 0 14px;
}
.chz-stat-filter,
.chz-stats article{
  min-height:54px;
  padding:8px 10px 8px 13px;
  border-radius:12px;
  border-left:3px solid var(--chz-line);
  background:transparent;
}
.chz-stat-filter b,
.chz-stats b{
  font-size:22px;
}
.chz-stat-filter span,
.chz-stats span{
  font-size:11px;
  margin-top:4px;
}
.chz-stat-filter.all{border-left-color:var(--chz-green)}
.chz-status-breakdown.compact,
.chz-status-breakdown{
  margin:0 0 14px;
  padding:10px 12px;
}
.chz-breakdown-list:empty{display:none}
.chz-breakdown-head{
  margin-bottom:0;
}
.chz-breakdown-list:not(:empty){
  margin-top:8px;
}
.chz-results-head.compact,
.chz-results-head{
  margin-top:16px;
}
.chz-table-toolbar{
  margin:8px 0 10px;
}
.chz-progress-card{
  margin:16px 0 0;
  padding:12px;
  border:1px solid var(--chz-line);
  border-radius:14px;
  background:var(--chz-soft);
}
.chz-progress-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.chz-progress-head b{
  display:block;
  color:var(--chz-ink);
  font-size:13px;
  font-weight:900;
}
.chz-progress-head span{
  display:block;
  margin-top:3px;
  color:var(--chz-muted);
  font-size:12px;
  font-weight:800;
}
.chz-progress-head strong{
  color:var(--chz-ink);
  font-size:18px;
  line-height:1;
  font-weight:900;
}
.chz-progress-bar{
  height:9px;
  overflow:hidden;
  border-radius:999px;
  background:rgba(128,146,176,.22);
}
.chz-progress-bar i{
  display:block;
  width:0;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(135deg,var(--chz-blue),var(--chz-blue-2));
  transition:width .18s linear;
}
.chz-results-dynamic{
  margin-top:18px;
}
.chz-download-row.compact{
  margin-top:16px;
}
.chz-btn:disabled{
  opacity:.55;
  cursor:not-allowed;
}
@media(max-width:980px){
  .chz-stats.compact,
  .chz-stats{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:560px){
  .chz-stats.compact,
  .chz-stats{grid-template-columns:1fr}
  .chz-progress-head{display:block}
  .chz-progress-head strong{display:block;margin-top:8px}
}


/* CHZ queue-aware compact counters */
.chz-stats.compact,
.chz-stats{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:8px;
}
.chz-stat-filter,
.chz-stats article{
  min-width:0;
  min-height:48px;
  padding:7px 9px 7px 12px;
}
.chz-stat-filter b,
.chz-stats b{
  font-size:20px;
}
.chz-stat-filter span,
.chz-stats span{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.chz-progress-head span{
  max-width:760px;
}
@media(max-width:760px){
  .chz-stats.compact,
  .chz-stats{grid-template-columns:repeat(2,minmax(0,1fr))}
}


/* percent-only progress */
.chz-progress-head{
  justify-content:flex-end;
  margin-bottom:8px;
}
.chz-progress-head > div{
  display:none!important;
}
.chz-progress-head strong{
  font-size:20px;
}


/* Unified ZENMARK tool style — based on /upd-chz/ */
body.chz-upd-style{
  background:#edf3fb;
  color:#0c1830;
}
.chz-upd-style .chz-app{
  max-width:1120px;
  padding:18px 12px 42px;
}
.chz-upd-style .chz-topbar{
  padding:9px 12px;
  border-radius:22px;
  background:rgba(255,255,255,.9);
  border:1px solid #d7e2f1;
  box-shadow:0 12px 36px rgba(20,34,56,.08);
}
.chz-upd-style .chz-logo span{
  width:34px;
  height:34px;
  border-radius:10px;
  background:#172b52;
}
.chz-upd-style .chz-logo b{
  letter-spacing:.16em;
}
.chz-upd-style .chz-nav{
  gap:8px;
}
.chz-upd-style .chz-nav a{
  border:0;
  background:transparent;
  box-shadow:none;
  padding:9px 12px;
  color:#0c1830;
  font-weight:900;
}
.chz-upd-style .chz-nav a.active,
.chz-upd-style .chz-nav a:hover{
  background:#0c1830;
  color:#fff;
}
.chz-upd-style .chz-theme-toggle{
  border:1px solid #d7e2f1;
  background:#fff;
  box-shadow:none;
}
.chz-upd-style .chz-hero{
  margin-top:18px;
  border-radius:22px;
  background:#fff;
  border:1px solid #d7e2f1;
  box-shadow:0 14px 44px rgba(20,34,56,.08);
  padding:28px;
}
.chz-upd-style .chz-hero h1{
  font-size:clamp(34px,4.3vw,56px);
  line-height:1.02;
  letter-spacing:-.055em;
  color:#0c1830;
}
.chz-upd-style .chz-hero p:not(.chz-kicker){
  max-width:720px;
  color:#53637a;
  font-weight:700;
  line-height:1.65;
}
.chz-upd-style .chz-kicker{
  color:#1f58d6;
  letter-spacing:.18em;
}
.chz-upd-style .chz-panel{
  border-radius:22px;
  background:#fff;
  border:1px solid #d7e2f1;
  box-shadow:0 14px 44px rgba(20,34,56,.08);
}
.chz-upd-style .chz-section-title h2{
  color:#0c1830;
}
.chz-upd-style .chz-section-title p,
.chz-upd-style .chz-help,
.chz-upd-style .chz-results-head p{
  color:#64738d;
  font-weight:700;
}
.chz-upd-style .chz-form label>span,
.chz-upd-style .chz-page-size label{
  color:#51617a;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:950;
}
.chz-upd-style .chz-form input[type=file],
.chz-upd-style .chz-form textarea,
.chz-upd-style .chz-page-size select{
  border:1px solid #d7e2f1;
  background:#fbfcff;
  border-radius:13px;
}
.chz-upd-style .chz-btn,
.chz-upd-style .chz-form button[type=submit]{
  background:#4269a3;
  box-shadow:none;
  border-radius:15px;
}
.chz-upd-style .chz-btn:hover,
.chz-upd-style .chz-form button[type=submit]:hover{
  background:#315c96;
}
.chz-upd-style .chz-stats{
  gap:10px;
}
.chz-upd-style .chz-stat-filter,
.chz-upd-style .chz-stats article{
  border:1px solid #d7e2f1;
  border-left:4px solid #4269a3;
  background:#fff;
  box-shadow:none;
}
.chz-upd-style .chz-status-breakdown,
.chz-upd-style .chz-table-wrap,
.chz-upd-style .chz-progress-card{
  border:1px solid #d7e2f1;
  background:#fbfcff;
  border-radius:18px;
}
.chz-upd-style .chz-table th{
  background:#f5f8fd;
  color:#51617a;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.chz-upd-style .status-pill.ok{
  background:#d9f7e8;
  color:#08764d;
}
.chz-upd-style .status-pill.bad{
  background:#ffe3e3;
  color:#b42318;
}
.chz-upd-style .status-pill.warn,
.chz-upd-style .status-pill.unknown{
  background:#fff2ce;
  color:#8a5b00;
}
@media(max-width:780px){
  .chz-upd-style .chz-app{
    padding:12px 10px 32px;
  }
  .chz-upd-style .chz-topbar{
    border-radius:18px;
  }
  .chz-upd-style .chz-hero,
  .chz-upd-style .chz-panel{
    padding:18px;
    border-radius:20px;
  }
}

.chz-upd-style .chz-progress-head > div{display:none!important}
.chz-upd-style .chz-progress-head{justify-content:flex-end}


/* FIX: exact UPD-like shell, centering and dark-mode readability */
:root{
  --chz-max:1220px;
}
body.chz-page.chz-upd-style{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at 0 0,rgba(255,220,150,.22),transparent 300px),
    radial-gradient(circle at 100% 0,rgba(97,128,255,.12),transparent 380px),
    #edf3fb;
  color:#0c1830;
}
html[data-upd-theme="dark"] body.chz-page.chz-upd-style{
  background:
    radial-gradient(circle at 0 0,rgba(255,205,107,.08),transparent 300px),
    radial-gradient(circle at 100% 0,rgba(108,139,255,.14),transparent 380px),
    #0a0c12;
  color:#eef1f8;
}
.chz-upd-style .chz-app{
  width:100%;
  max-width:var(--chz-max);
  margin:0 auto;
  padding:18px 12px 42px;
}
.chz-upd-style .chz-topbar{
  width:100%;
  max-width:var(--chz-max);
  margin:0 auto 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  position:sticky;
  top:12px;
  z-index:30;
  padding:9px 10px 9px 14px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid #d7e2f1;
  box-shadow:0 1px 0 rgba(15,23,42,.03),0 4px 10px -6px rgba(15,23,42,.12);
}
html[data-upd-theme="dark"] .chz-upd-style .chz-topbar{
  background:#12151e;
  border-color:#252a38;
  box-shadow:0 1px 0 rgba(255,255,255,.03),0 8px 18px -12px rgba(0,0,0,.55);
}
.chz-upd-style .chz-logo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#0c1830;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.14em;
  line-height:1;
}
html[data-upd-theme="dark"] .chz-upd-style .chz-logo{
  color:#eef1f8;
}
.chz-upd-style .chz-logo span{
  width:34px;
  height:34px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#101527,#3e5c8f);
  color:#fff;
  letter-spacing:0;
  font-size:14px;
}
.chz-upd-style .chz-logo b{
  font-size:13px;
  white-space:nowrap;
}
.chz-upd-style .chz-nav{
  display:flex;
  gap:4px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.chz-upd-style .chz-nav a{
  color:#3f4b63;
  text-decoration:none;
  font-weight:700;
  border:1px solid transparent;
  border-radius:999px;
  padding:8px 13px;
  font-size:13px;
  line-height:1;
  background:transparent;
  box-shadow:none;
}
.chz-upd-style .chz-nav a:hover{
  background:#f7f8fb;
  border-color:#d7e2f1;
  color:#0c1830;
}
.chz-upd-style .chz-nav a.active{
  background:#0c1830;
  color:#fff;
  border-color:#0c1830;
}
html[data-upd-theme="dark"] .chz-upd-style .chz-nav a{
  color:#c3cadd;
}
html[data-upd-theme="dark"] .chz-upd-style .chz-nav a:hover{
  background:#161a24;
  border-color:#343b4d;
  color:#eef1f8;
}
html[data-upd-theme="dark"] .chz-upd-style .chz-nav a.active{
  background:#6c8bff;
  border-color:#6c8bff;
  color:#0a0c12;
}
.chz-upd-style .chz-theme-toggle{
  border:1px solid #d7e2f1;
  background:#f7f8fb;
  width:36px;
  height:36px;
  border-radius:999px;
  display:grid;
  place-items:center;
  cursor:pointer;
  color:#0c1830;
  margin-left:4px;
  box-shadow:none;
  flex:none;
  padding:0;
}
html[data-upd-theme="dark"] .chz-upd-style .chz-theme-toggle{
  background:#161a24;
  border-color:#252a38;
  color:#eef1f8;
}
.chz-upd-style .chz-theme-toggle svg{
  width:17px;
  height:17px;
}
.chz-upd-style .chz-theme-toggle .chz-ico-sun{
  display:none;
}
html[data-upd-theme="dark"] .chz-upd-style .chz-theme-toggle .chz-ico-sun{
  display:block;
}
html[data-upd-theme="dark"] .chz-upd-style .chz-theme-toggle .chz-ico-moon{
  display:none;
}
.chz-upd-style .theme-sun,
.chz-upd-style .theme-moon{
  display:none!important;
}
.chz-upd-style .chz-hero,
.chz-upd-style .chz-panel{
  width:100%;
  max-width:var(--chz-max);
  margin-left:auto;
  margin-right:auto;
  background:#ffffff;
  border:1px solid #d7e2f1;
  border-radius:18px;
  box-shadow:0 1px 0 rgba(15,23,42,.03),0 8px 16px -10px rgba(15,23,42,.16);
}
.chz-upd-style .chz-hero{
  margin-top:0;
  margin-bottom:16px;
  padding:26px 28px;
}
html[data-upd-theme="dark"] .chz-upd-style .chz-hero,
html[data-upd-theme="dark"] .chz-upd-style .chz-panel{
  background:#12151e;
  border-color:#252a38;
  box-shadow:0 1px 0 rgba(255,255,255,.03),0 10px 20px -14px rgba(0,0,0,.6);
}
.chz-upd-style .chz-hero h1{
  margin:0;
  font-size:clamp(38px,5.2vw,64px);
  line-height:.98;
  letter-spacing:-.065em;
  color:#0c1830;
}
html[data-upd-theme="dark"] .chz-upd-style .chz-hero h1,
html[data-upd-theme="dark"] .chz-upd-style .chz-section-title h2,
html[data-upd-theme="dark"] .chz-upd-style .chz-table td,
html[data-upd-theme="dark"] .chz-upd-style .chz-table code{
  color:#eef1f8;
}
.chz-upd-style .chz-hero p:not(.chz-kicker){
  max-width:720px;
  color:#53637a;
  font-weight:700;
  line-height:1.65;
}
html[data-upd-theme="dark"] .chz-upd-style .chz-hero p:not(.chz-kicker),
html[data-upd-theme="dark"] .chz-upd-style .chz-section-title p,
html[data-upd-theme="dark"] .chz-upd-style .chz-help,
html[data-upd-theme="dark"] .chz-upd-style .chz-results-head p,
html[data-upd-theme="dark"] .chz-upd-style .chz-page-info{
  color:#8891a6;
}
.chz-upd-style .chz-kicker{
  margin:0 0 10px;
  color:#3e5c8f;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:900;
}
html[data-upd-theme="dark"] .chz-upd-style .chz-kicker{
  color:#8ba0ff;
}
.chz-upd-style .chz-panel{
  padding:24px;
  margin-bottom:16px;
}
.chz-upd-style .chz-form input[type=file],
.chz-upd-style .chz-form textarea,
.chz-upd-style .chz-page-size select{
  border:1px solid #d7e2f1;
  background:#fbfcff;
  color:#0c1830;
}
html[data-upd-theme="dark"] .chz-upd-style .chz-form input[type=file],
html[data-upd-theme="dark"] .chz-upd-style .chz-form textarea,
html[data-upd-theme="dark"] .chz-upd-style .chz-page-size select{
  border-color:#252a38;
  background:#161a24;
  color:#eef1f8;
}
html[data-upd-theme="dark"] .chz-upd-style .chz-form textarea::placeholder{
  color:#8891a6;
}
.chz-upd-style .chz-table-wrap,
.chz-upd-style .chz-status-breakdown,
.chz-upd-style .chz-progress-card{
  background:#fbfcff;
  border:1px solid #d7e2f1;
}
html[data-upd-theme="dark"] .chz-upd-style .chz-table-wrap,
html[data-upd-theme="dark"] .chz-upd-style .chz-status-breakdown,
html[data-upd-theme="dark"] .chz-upd-style .chz-progress-card{
  background:#161a24;
  border-color:#252a38;
}
html[data-upd-theme="dark"] .chz-upd-style .chz-table th{
  background:#161a24;
  color:#8891a6;
  border-color:#252a38;
}
html[data-upd-theme="dark"] .chz-upd-style .chz-table td{
  border-color:#252a38;
}
@media(max-width:900px){
  .chz-upd-style .chz-app{
    padding:12px 10px 32px;
  }
  .chz-upd-style .chz-topbar{
    position:relative;
    top:auto;
    border-radius:18px;
    align-items:flex-start;
  }
  .chz-upd-style .chz-nav{
    width:100%;
    justify-content:flex-start;
  }
  .chz-upd-style .chz-hero,
  .chz-upd-style .chz-panel{
    padding:18px;
    border-radius:18px;
  }
}


/* FIX: chz-check typography aligned to /upd-chz */
.chz-upd-style .chz-hero{
  min-height:0;
  padding:26px 28px;
}
.chz-upd-style .chz-hero h1{
  max-width:860px;
  font-size:clamp(30px,3.2vw,42px)!important;
  line-height:1.08!important;
  letter-spacing:-.04em!important;
  margin:0 0 12px!important;
}
.chz-upd-style .chz-hero p:not(.chz-kicker){
  font-size:15px;
  line-height:1.55;
  max-width:780px;
  margin:0;
}
.chz-upd-style .chz-kicker{
  font-size:12px;
  margin-bottom:14px;
}
.chz-upd-style .chz-section-title h2{
  font-size:24px;
  line-height:1.15;
  letter-spacing:-.025em;
}
.chz-upd-style .chz-section-title p{
  font-size:14px;
}
.chz-upd-style .chz-form textarea{
  min-height:230px;
  font-size:13px;
  line-height:1.55;
}
.chz-upd-style .chz-form input[type=file]{
  min-height:44px;
}
.chz-upd-style .chz-panel{
  padding:22px 24px;
}
.chz-upd-style .chz-btn,
.chz-upd-style .chz-form button[type=submit]{
  min-height:48px;
  font-size:14px;
}
@media(max-width:900px){
  .chz-upd-style .chz-hero h1{
    font-size:clamp(28px,7vw,36px)!important;
  }
  .chz-upd-style .chz-hero,
  .chz-upd-style .chz-panel{
    padding:18px;
  }
  .chz-upd-style .chz-form textarea{
    min-height:190px;
  }
}
@media(max-width:520px){
  .chz-upd-style .chz-hero h1{
    font-size:30px!important;
  }
  .chz-upd-style .chz-section-title h2{
    font-size:20px;
  }
}


/* CHZ SmartCaptcha guard */
.chz-captcha-card{
  border:1px solid var(--chz-line, #dbe3ef);
  border-radius:18px;
  background:rgba(248,250,252,.9);
  padding:14px;
  display:grid;
  gap:8px;
}
.chz-captcha-title{
  font-weight:900;
  color:var(--chz-text, #122033);
}
.chz-captcha-note{
  margin:0;
  color:var(--chz-muted, #64748b);
  font-size:13px;
  line-height:1.45;
}
.chz-btn[disabled],
.chz-btn[aria-disabled="true"]{
  opacity:.55;
  cursor:not-allowed;
  filter:grayscale(.15);
}
[data-upd-theme="dark"] .chz-captcha-card{
  background:rgba(15,23,42,.72);
}


/* ZENMARK Public Account Menu Unified v12 */
.z-account-nav,
.z-lock-link{
  border-color:#d7e2f1!important;
  background:#f8fbff!important;
  color:#1a2440!important;
  font-weight:950!important;
}
.z-account-nav::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:#315eea;
  box-shadow:0 0 0 4px rgba(49,94,234,.10);
  margin-right:7px;
}
.z-account-nav:hover,
.z-lock-link:hover{
  background:#eef4ff!important;
  border-color:#c7d8f2!important;
}
html[data-upd-theme="dark"] .z-account-nav,
html[data-upd-theme="dark"] .z-lock-link,
html.theme-dark .z-account-nav,
html.theme-dark .z-lock-link{
  background:#161a24!important;
  border-color:#252a38!important;
  color:#eef1f8!important;
}
html[data-upd-theme="dark"] .z-account-nav:hover,
html[data-upd-theme="dark"] .z-lock-link:hover,
html.theme-dark .z-account-nav:hover,
html.theme-dark .z-lock-link:hover{
  background:#1a2140!important;
  border-color:#343b4d!important;
}


/* ZENMARK Unified Public Menu Partial v13 */
.zpub-topbar .z-account-nav{
  border-color:#d7e2f1!important;
  background:#f8fbff!important;
  color:#1a2440!important;
  font-weight:950!important;
}
.zpub-topbar .z-account-nav::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:#315eea;
  box-shadow:0 0 0 4px rgba(49,94,234,.10);
  margin-right:7px;
}
.zpub-topbar .z-account-nav.is-auth::before{
  background:#16a34a;
  box-shadow:0 0 0 4px rgba(22,163,74,.12);
}
.zpub-topbar .z-account-nav:hover{
  background:#eef4ff!important;
  border-color:#c7d8f2!important;
}
html[data-upd-theme="dark"] .zpub-topbar .z-account-nav,
html.theme-dark .zpub-topbar .z-account-nav{
  background:#161a24!important;
  border-color:#252a38!important;
  color:#eef1f8!important;
}
html[data-upd-theme="dark"] .zpub-topbar .z-account-nav:hover,
html.theme-dark .zpub-topbar .z-account-nav:hover{
  background:#1a2140!important;
  border-color:#343b4d!important;
}


/* ZENMARK Public Menu Visual Fix v14
   Desktop: hamburger is hidden.
   Account button: same pill and status dot on every public section.
*/
.zpub-topbar .zpub-menu-btn{
  display:none!important;
  visibility:hidden!important;
}
.zpub-topbar .zpub-nav{
  align-items:center!important;
}
.zpub-topbar .z-account-nav{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  flex:0 0 auto!important;
  gap:7px!important;
  min-height:34px!important;
  border:1px solid #d7e2f1!important;
  background:#f8fbff!important;
  color:#1a2440!important;
  border-radius:999px!important;
  padding:8px 12px!important;
  text-decoration:none!important;
  font-size:12px!important;
  line-height:1!important;
  font-weight:950!important;
  white-space:nowrap!important;
  box-shadow:none!important;
}
.zpub-topbar .z-account-nav::before{
  content:""!important;
  display:block!important;
  flex:0 0 8px!important;
  width:8px!important;
  min-width:8px!important;
  max-width:8px!important;
  height:8px!important;
  min-height:8px!important;
  max-height:8px!important;
  border-radius:999px!important;
  background:#315eea!important;
  box-shadow:0 0 0 4px rgba(49,94,234,.10)!important;
  margin:0!important;
  padding:0!important;
  transform:none!important;
}
.zpub-topbar .z-account-nav.is-auth::before{
  background:#16a34a!important;
  box-shadow:0 0 0 4px rgba(22,163,74,.14)!important;
}
.zpub-topbar .z-account-nav:hover{
  background:#eef4ff!important;
  border-color:#c7d8f2!important;
}
html[data-upd-theme="dark"] .zpub-topbar .z-account-nav,
html.theme-dark .zpub-topbar .z-account-nav{
  background:#161a24!important;
  border-color:#252a38!important;
  color:#eef1f8!important;
}
html[data-upd-theme="dark"] .zpub-topbar .z-account-nav:hover,
html.theme-dark .zpub-topbar .z-account-nav:hover{
  background:#1a2140!important;
  border-color:#343b4d!important;
}

@media(max-width:820px){
  .zpub-topbar .zpub-menu-btn{
    display:grid!important;
    visibility:visible!important;
    place-items:center!important;
    width:42px!important;
    height:42px!important;
    min-width:42px!important;
    padding:0!important;
    border:1px solid #d7e2f1!important;
    border-radius:14px!important;
    background:#f8fbff!important;
    color:#0c1830!important;
    box-shadow:none!important;
    cursor:pointer!important;
    position:relative!important;
    -webkit-tap-highlight-color:transparent!important;
  }
  .zpub-topbar .zpub-menu-btn span{
    position:absolute!important;
    left:11px!important;
    right:11px!important;
    height:2px!important;
    border-radius:999px!important;
    background:currentColor!important;
    transition:transform .22s ease, top .22s ease, opacity .16s ease!important;
  }
  .zpub-topbar .zpub-menu-btn span:nth-child(1){top:13px!important}
  .zpub-topbar .zpub-menu-btn span:nth-child(2){top:20px!important}
  .zpub-topbar .zpub-menu-btn span:nth-child(3){top:27px!important}
  .zpub-topbar.is-open .zpub-menu-btn span:nth-child(1){
    top:20px!important;
    transform:rotate(45deg)!important;
  }
  .zpub-topbar.is-open .zpub-menu-btn span:nth-child(2){
    opacity:0!important;
  }
  .zpub-topbar.is-open .zpub-menu-btn span:nth-child(3){
    top:20px!important;
    transform:rotate(-45deg)!important;
  }
}
@media(min-width:821px){
  .zpub-topbar .zpub-menu-btn,
  .zpub-topbar .zpub-menu-btn span{
    display:none!important;
    visibility:hidden!important;
  }
}


/* ZENMARK CHZ Enterprise UI + No Description v12 */
.chz-page{
  --chz-blue:#2f55a4;
  --chz-blue-2:#284989;
  --chz-radius:8px;
  --chz-radius-sm:5px;
  --chz-panel:#ffffff;
  --chz-soft:#f7f9fc;
  --chz-line:#d6e0ee;
}
.chz-app{
  width:min(1320px,calc(100% - 28px))!important;
}
.chz-hero,
.chz-card,
.chz-results-dynamic,
.chz-table-wrap,
.chz-status-breakdown,
.chz-progress-card{
  border-radius:10px!important;
  box-shadow:0 8px 24px rgba(15,27,54,.055)!important;
}
.chz-hero{
  padding:24px 28px!important;
}
.chz-hero h1{
  font-size:clamp(34px,3.2vw,54px)!important;
  letter-spacing:-.045em!important;
}
.chz-card{
  padding:22px 24px!important;
}
.chz-card h2,
.chz-results-head h2{
  font-size:28px!important;
  letter-spacing:-.035em!important;
}
.chz-field input,
.chz-field textarea,
.chz-page-size select{
  border-radius:7px!important;
  background:#fff!important;
}
.chz-field textarea{
  min-height:220px!important;
  font-size:12px!important;
}
.chz-captcha-card{
  display:grid!important;
  grid-template-columns:minmax(220px,320px) minmax(260px,520px)!important;
  align-items:center!important;
  justify-content:start!important;
  gap:16px!important;
  margin:0 0 14px!important;
  padding:14px!important;
  border-radius:8px!important;
  background:#f7f9fc!important;
}
.chz-captcha-title{
  margin:0!important;
  font-size:14px!important;
}
.chz-captcha-note{
  margin:4px 0 0!important;
  font-size:12px!important;
  line-height:1.35!important;
  color:var(--chz-muted)!important;
}
.chz-captcha-card .smart-captcha{
  width:100%!important;
  max-width:520px!important;
  min-height:96px!important;
  overflow:hidden!important;
}
.chz-captcha-card iframe{
  width:100%!important;
  max-width:100%!important;
}
.chz-actions{
  margin-top:8px!important;
}
.chz-btn{
  min-height:40px!important;
  border-radius:7px!important;
  padding:9px 14px!important;
  font-size:13px!important;
  font-weight:900!important;
}
.chz-btn.primary,
.chz-btn.secondary{
  background:#2f55a4!important;
  border:1px solid #2f55a4!important;
  color:#fff!important;
}
.chz-btn.ghost{
  background:#fff!important;
  border:1px solid var(--chz-line)!important;
  color:#2f55a4!important;
}
.chz-btn:disabled,
.chz-btn[aria-disabled="true"]{
  background:#e6ebf3!important;
  border-color:#d6e0ee!important;
  color:#65738a!important;
  opacity:1!important;
  cursor:not-allowed!important;
}
.chz-progress-card{
  padding:14px!important;
}
.chz-progress-bar{
  border-radius:5px!important;
}
.chz-progress-bar i{
  background:#2f55a4!important;
}
.chz-stats{
  gap:8px!important;
}
.chz-stat-filter{
  min-height:52px!important;
  border-radius:7px!important;
  padding:10px 12px!important;
  box-shadow:none!important;
}
.chz-stat-filter b{
  font-size:22px!important;
}
.chz-stat-filter span{
  font-size:10px!important;
}
.chz-status-breakdown{
  padding:12px!important;
}
.chz-breakdown-list{
  gap:6px!important;
}
.chz-breakdown-chip{
  min-height:30px!important;
  border-radius:6px!important;
  padding:5px 8px!important;
  font-size:11px!important;
}
.chz-table-toolbar{
  gap:8px!important;
  margin:10px 0!important;
}
.chz-page-info{
  font-size:12px!important;
}
.chz-page-size label{
  font-size:10px!important;
}
.chz-page-size select{
  min-height:34px!important;
}
.chz-table-wrap{
  overflow:auto!important;
}
.chz-table{
  min-width:780px!important;
}
.chz-table th,
.chz-table td{
  padding:10px 12px!important;
  font-size:12px!important;
}
.chz-table th{
  background:#f7f9fc!important;
}
.chz-table th:nth-child(1),
.chz-table td:nth-child(1){
  width:54px!important;
}
.chz-table th:nth-child(2),
.chz-table td:nth-child(2){
  width:44%!important;
}
.chz-table th:nth-child(3),
.chz-table td:nth-child(3){
  width:150px!important;
}
.chz-table th:nth-child(4),
.chz-table td:nth-child(4){
  width:160px!important;
}
.chz-table th:nth-child(5),
.chz-table td:nth-child(5){
  width:90px!important;
}
.status-pill{
  border-radius:5px!important;
  min-height:24px!important;
  padding:0 8px!important;
  font-size:10px!important;
}
.chz-download-row{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:12px!important;
  margin-top:12px!important;
}
.chz-download-row p{
  margin:0!important;
  color:var(--chz-muted)!important;
  font-size:12px!important;
}
.chz-download-row .chz-btn{
  min-width:150px!important;
}
@media(max-width:820px){
  .chz-app{
    width:calc(100% - 16px)!important;
  }
  .chz-hero,
  .chz-card{
    padding:16px!important;
    border-radius:8px!important;
  }
  .chz-hero h1{
    font-size:34px!important;
  }
  .chz-captcha-card{
    grid-template-columns:1fr!important;
    gap:10px!important;
    padding:12px!important;
  }
  .chz-captcha-card .smart-captcha{
    max-width:100%!important;
  }
  .chz-table{
    min-width:680px!important;
  }
  .chz-download-row{
    display:grid!important;
  }
  .chz-download-row .chz-btn{
    width:100%!important;
  }
}
@media(max-width:520px){
  .chz-app{
    width:calc(100% - 10px)!important;
  }
  .chz-hero h1{
    font-size:29px!important;
  }
  .chz-card h2,
  .chz-results-head h2{
    font-size:23px!important;
  }
  .chz-field textarea{
    min-height:180px!important;
  }
  .chz-input-meta{
    display:grid!important;
    gap:5px!important;
    font-size:11px!important;
  }
  .chz-stats.compact{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
  .chz-table-toolbar{
    display:grid!important;
  }
  .chz-pager{
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
  }
  .chz-pager .chz-btn{
    width:100%!important;
  }
}


/* ZENMARK CHZ Captcha Inline Button v13 */
.chz-input-meta{
  margin:-2px 0 14px!important;
  padding:0 2px!important;
}
.chz-verify-row{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) 220px!important;
  gap:14px!important;
  align-items:stretch!important;
  margin:14px 0 12px!important;
}
.chz-verify-row.no-captcha{
  grid-template-columns:1fr!important;
}
.chz-verify-row .chz-captcha-card{
  margin:0!important;
  min-height:112px!important;
}
.chz-captcha-card{
  grid-template-columns:minmax(180px,300px) minmax(280px,520px)!important;
  gap:18px!important;
  align-items:center!important;
  padding:14px 16px!important;
}
.chz-captcha-copy{
  min-width:0!important;
  padding-right:4px!important;
}
.chz-captcha-title{
  margin:0 0 6px!important;
}
.chz-captcha-note{
  max-width:280px!important;
}
.chz-verify-row .chz-actions{
  display:grid!important;
  align-self:stretch!important;
  margin:0!important;
}
.chz-verify-row .chz-actions .chz-btn{
  width:100%!important;
  min-height:112px!important;
  border-radius:8px!important;
  font-size:14px!important;
  white-space:normal!important;
  line-height:1.2!important;
}
.chz-verify-row .chz-actions .chz-btn:disabled,
.chz-verify-row .chz-actions .chz-btn[aria-disabled="true"]{
  background:#dfe6f0!important;
  border-color:#cdd8e8!important;
  color:#4e5d73!important;
  text-shadow:none!important;
}
.chz-table-wrap{
  margin-top:8px!important;
}
.chz-results-head{
  gap:16px!important;
}
.chz-results-head p{
  margin-top:6px!important;
}
.chz-download-row{
  padding-top:10px!important;
}
@media(max-width:1120px){
  .chz-verify-row{
    grid-template-columns:1fr!important;
  }
  .chz-verify-row .chz-actions .chz-btn{
    min-height:46px!important;
  }
}
@media(max-width:760px){
  .chz-captcha-card{
    grid-template-columns:1fr!important;
    gap:10px!important;
  }
  .chz-captcha-note{
    max-width:none!important;
  }
  .chz-verify-row{
    gap:10px!important;
    margin:12px 0 10px!important;
  }
  .chz-verify-row .chz-actions .chz-btn{
    min-height:44px!important;
  }
}
@media(max-width:420px){
  .chz-captcha-card{
    padding:10px!important;
  }
  .chz-verify-row .chz-actions .chz-btn{
    min-height:42px!important;
    font-size:13px!important;
  }
}
