/* /setup/assets/css/setup.css
   Minimal overrides so /setup matches the Settings look (white tile, dark blue primary buttons). */

/* Page background is already from settings style.css. */
.setup-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  background:transparent;

  max-width:520px;
  margin:0 auto;
}

.setup-logo img{
  width:44px;
  height:44px;
  display:block;
}

.setup-title{
  text-align:center;
  line-height:1.05;
  font-weight:800;
  color:#0b1f3a;
  font-size:15px;
}

.setup-help{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:#fff;
  color:#0b1f3a;
  text-decoration:none;
  font-weight:900;
  border:1px solid rgba(0,0,0,.08);
}

.setup-page{
  max-width:520px;        /* matches the 'tile width' feel */
  margin:0 auto;
  padding:10px 14px 30px;
}

.setup-card{
  background:#fff;
  border-radius:18px;
  padding:18px 16px 16px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.setup-card h1{
  margin:0 0 6px 0;
  font-size:34px;
  font-weight:900;
  color:#0b1f3a;
}

.setup-subtitle{
  margin:0 0 14px 0;
  color:rgba(11,31,58,.75);
  font-size:14px;
}

.setup-field{
  margin:12px 0;
}

.setup-label{
  display:block;
  font-weight:700;
  color:#0b1f3a;
  margin:0 0 6px 0;
  font-size:13px;
}

.setup-input{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(11,31,58,.18);
  padding:12px 12px;
  font-size:16px;
  outline:none;
}
.setup-input:focus{
  border-color:rgba(11,31,58,.35);
}

.setup-actions{
  display:flex;
  gap:12px;
  margin-top:14px;
}

.setup-btn{
  appearance:none;
  border:0;
  border-radius:12px;
  padding:12px 14px;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  width:100%;
}

.setup-btn-primary{
  background:#0b2a66;   /* dark blue */
  color:#fff;
}

.setup-btn-cancel{
  background:#ffd7d7;
  color:#8a1515;
  border:1px solid rgba(138,21,21,.18);
}

.setup-helptext{
  margin-top:12px;
  color:rgba(11,31,58,.75);
  font-size:13px;
}

/* Flash/error message: no border, placed under primary button */
.setup-flash{
  margin-top:10px;
  font-weight:700;
  color:#8a1515;
  font-size:13px;
}

/* Restore details marker for "Postal address (optional)" */
details > summary{
  cursor:pointer;
  font-weight:800;
  color:#0b1f3a;
  margin-top:10px;
}
details > summary::marker{
  color:#0b1f3a;
}
