[hidden]{display:none!important}
.cbox { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2.5rem; }
.cbox textarea {
  width: 100%; min-height: 150px; resize: vertical; background: rgba(0,0,0,0.3);
  border: 1px solid var(--border); border-radius: 10px; color: var(--bright);
  font-family: var(--mono); font-size: 0.86rem; line-height: 1.55; padding: 0.9rem 1rem; outline: none;
}
.cbox textarea:focus { border-color: var(--border-bright); }
.cbox textarea[readonly] { color: var(--text); background: rgba(0,0,0,0.2); }

.opts { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; }
.opts label { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--text); cursor: pointer; }
.opts input { accent-color: var(--neon); }

.crow { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.cbtn {
  background: var(--neon); color: var(--bg); border: none; border-radius: 9px; cursor: pointer;
  font-family: var(--mono); font-weight: 700; font-size: 0.86rem; padding: 0.7rem 1.1rem; letter-spacing: 0.03em;
  transition: filter 0.15s, box-shadow 0.15s;
}
.cbtn:hover { filter: brightness(1.08); box-shadow: 0 0 22px rgba(0,255,156,0.25); }
.cbtn.ghost { background: var(--surface); color: var(--neon); border: 1px solid var(--border); }
.cbtn.ghost:hover { border-color: var(--border-bright); background: rgba(0,255,156,0.06); box-shadow: none; }

.report { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.1rem; font-size: 0.82rem; }
.report .clean-ok { color: var(--neon); font-weight: 700; }
.report .warn { color: var(--amber); font-weight: 700; }
.report ul { list-style: none; margin: 0.6rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.report li { display: flex; justify-content: space-between; gap: 1rem; color: var(--text); border-bottom: 1px dashed var(--border); padding-bottom: 0.3rem; }
.report li:last-child { border-bottom: none; }
.report li b { color: var(--bright); }
.report li .n { color: var(--danger); font-weight: 700; }

.note { font-size: 0.74rem; color: var(--dim); }
.note code { color: var(--cyan); }
