/* ============================================================
   CANTIERI — Verificador de Impressão (aba "Verificador")
   Escopado em .verify para não vazar no dashboard.
============================================================ */
.route-host.verify { display:flex; flex-direction:row; gap:16px; height:100%; min-height:540px; }

/* ---- palco ---- */
.verify .v-stage-wrap { flex:1; display:flex; flex-direction:column; min-width:0; }
.verify .v-stage {
  flex:1; position:relative; display:flex; align-items:center; justify-content:center;
  background:var(--bg); border:1px solid var(--line-soft); border-radius:12px; overflow:hidden; min-height:0;
  background-image:radial-gradient(circle at 1px 1px, rgba(240,237,230,0.04) 1px, transparent 0);
  background-size:22px 22px;
}

/* ---- canvases ---- */
.verify .v-canvases {
  position:relative; display:inline-block;
  max-width:calc(100% - 36px); max-height:calc(100% - 36px); line-height:0;
}
.verify #vMain {
  display:block; max-width:100%; max-height:calc(100vh - 280px);
  border-radius:4px; box-shadow:0 0 0 1px var(--line), 0 24px 50px -20px rgba(0,0,0,.8);
}
.verify #vOverlay {
  position:absolute; top:0; left:0; width:100%; height:100%; pointer-events:none;
}

/* ---- dropzone ---- */
.verify .v-dropzone {
  position:absolute; inset:18px; border:1.5px dashed var(--line); border-radius:10px;
  display:flex; align-items:center; justify-content:center; flex-direction:column; gap:10px;
  text-align:center; color:var(--text-dim); padding:24px;
}
.verify .v-dropzone.drag { border-color:var(--accent); background:var(--accent-soft); color:var(--accent); }
.verify .v-dropzone .dz-ico { width:40px; height:40px; opacity:.45; }
.verify .v-dropzone b { color:var(--text); font-weight:600; font-size:15px; }
.verify .v-dropzone small { color:var(--text-faint); font-family:var(--mono); font-size:11px; }

/* ---- badge ---- */
.verify .badge {
  position:absolute; left:16px; top:14px; font-family:var(--mono); font-size:10.5px;
  letter-spacing:.06em; text-transform:uppercase; color:var(--text-faint);
  background:rgba(20,20,20,.75); backdrop-filter:blur(8px);
  padding:5px 9px; border-radius:6px; border:1px solid var(--line-soft);
}

/* ---- painel ---- */
.verify .v-panel {
  width:330px; flex-shrink:0; background:var(--ink); border:1px solid var(--line-soft);
  border-radius:12px; display:flex; flex-direction:column; overflow:hidden;
}
.verify .v-panel-head {
  padding:15px 18px; border-bottom:1px solid var(--line-soft);
  display:flex; align-items:center; gap:10px; flex-shrink:0;
}
.verify .v-ph-ico {
  width:30px; height:30px; border-radius:8px; background:var(--accent-soft);
  border:1px solid var(--accent-line); display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.verify .v-ph-t { font-size:13.5px; font-weight:600; }
.verify .v-ph-s { font-size:11px; color:var(--text-faint); font-family:var(--mono); }

.verify .v-panel-body { flex:1; overflow-y:auto; }
.verify .v-panel-body::-webkit-scrollbar { width:10px; }
.verify .v-panel-body::-webkit-scrollbar-thumb { background:var(--line); border-radius:5px; border:3px solid var(--ink); }

/* ---- grupos ---- */
.verify .v-group { padding:15px 18px; border-bottom:1px solid var(--line-soft); }
.verify .v-group:last-child { border-bottom:none; }
.verify .v-group-head { margin-bottom:14px; }
.verify .v-group-head h2 {
  font-family:var(--mono); font-size:10px; letter-spacing:.13em; text-transform:uppercase;
  color:var(--text-faint); margin:0; font-weight:500;
}

/* ---- controles ---- */
.verify .v-ctrl { margin-bottom:15px; }
.verify .v-ctrl:last-child { margin-bottom:0; }
.verify .v-ctrl-label { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:8px; }
.verify .v-ctrl-label .lbl,
.verify .lbl { font-size:12.5px; color:var(--text); font-weight:500; }
.verify .v-ctrl-label .val { font-family:var(--mono); font-size:11px; color:var(--accent); }
.verify .v-ctrl-sub { font-size:11px; color:var(--text-faint); line-height:1.55; margin-top:7px; }
.verify .v-ctrl-sub-label { font-size:12.5px; font-weight:500; color:var(--text); margin-bottom:8px; }

/* range */
.verify input[type=range] {
  -webkit-appearance:none; appearance:none; width:100%; height:4px; border-radius:2px;
  background:var(--surface-3); outline:none; cursor:pointer;
}
.verify input[type=range]::-webkit-slider-thumb {
  -webkit-appearance:none; width:14px; height:14px; border-radius:50%;
  background:var(--cream); border:3px solid var(--ink); box-shadow:0 0 0 1px var(--line);
  cursor:pointer; transition:.1s;
}
.verify input[type=range]::-webkit-slider-thumb:hover { background:var(--accent); }

/* checkboxes */
.verify .v-check {
  display:flex; align-items:center; gap:8px; margin-bottom:8px; cursor:pointer;
  font-size:12.5px; color:var(--text);
}
.verify .v-check:last-child { margin-bottom:0; }
.verify .v-check input[type=checkbox] { accent-color:var(--accent); width:14px; height:14px; cursor:pointer; flex-shrink:0; }
.verify .v-check em { color:var(--text-faint); font-style:normal; font-size:11px; }

/* toggle */
.verify .v-toggle { display:flex; align-items:center; justify-content:space-between; }
.verify .v-switch { position:relative; width:38px; height:22px; flex-shrink:0; display:inline-block; }
.verify .v-switch input { opacity:0; width:0; height:0; position:absolute; }
.verify .v-sw {
  position:absolute; inset:0; background:var(--surface-3); cursor:pointer; transition:.15s;
  border-radius:11px; border:1px solid var(--line);
}
.verify .v-sw:before {
  content:""; position:absolute; width:16px; height:16px; left:2px; top:2px;
  background:var(--text-faint); transition:.15s; border-radius:50%;
}
.verify .v-switch input:checked + .v-sw { background:var(--accent-soft); border-color:var(--accent-line); }
.verify .v-switch input:checked + .v-sw:before { transform:translateX(16px); background:var(--accent); }

/* ---- estatísticas ---- */
.verify .v-stats { display:flex; flex-direction:column; gap:8px; margin-bottom:0; }
.verify .v-stat {
  display:flex; align-items:center; gap:12px; background:var(--surface-2);
  border:1px solid var(--line); border-radius:8px; padding:10px 14px;
}
.verify .v-stat-dot { width:10px; height:10px; border-radius:50%; flex-shrink:0; }
.verify .v-stat-body { display:flex; align-items:baseline; gap:7px; }
.verify .v-stat-n { font-family:var(--mono); font-size:20px; font-weight:700; color:var(--text); line-height:1; }
.verify .v-stat-l { font-size:12px; color:var(--text-faint); }
.verify .v-ok {
  font-size:12.5px; color:var(--accent); margin-top:10px; text-align:center;
  padding:9px 12px; background:var(--accent-soft); border:1px solid var(--accent-line); border-radius:7px;
}

/* ---- botões ---- */
.verify .v-btn-col { display:flex; flex-direction:column; gap:8px; }

/* responsivo */
@media (max-width:900px) {
  .verify { flex-direction:column; height:auto; }
  .verify .v-panel { width:100%; }
  .verify .v-stage { min-height:360px; }
}
