:root{--bg:#0b0d10;--panel:#12161b;--muted:#8691a1;--text:#e7ecf3;--accent:#5b9aff;--border:#1e232b}
*{box-sizing:border-box}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial,sans-serif;background:var(--bg);color:var(--text)}
.wrap{max-width:980px;margin:40px auto;padding:0 16px}
h1{font-weight:700;font-size:28px;margin:0 0 12px}
p.lead{color:var(--muted);margin:0 0 24px}
.panel{background:var(--panel);border:1px solid var(--border);border-radius:16px;padding:18px;display:grid;grid-template-columns:1fr 360px;gap:18px}
@media (max-width:920px){.panel{grid-template-columns:1fr}}
fieldset{border:0;padding:0;margin:0 0 10px}
label{display:block;font-size:13px;color:var(--muted);margin:0 0 6px}
input[type=text],input[type=number],input[type=color],input[type=file],select{width:100%;padding:10px 12px;border-radius:10px;border:1px solid var(--border);background:#0f1318;color:var(--text)}
.row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.actions{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
button{background:var(--accent);border:0;border-radius:10px;color:#fff;padding:10px 14px;cursor:pointer}
button.secondary{background:#2a3039}
.preview{background:#0f1318;border:1px dashed var(--border);border-radius:12px;min-height:320px;display:grid;place-items:center;padding:12px}
.preview img{max-width:100%;height:auto;display:block}
.hint{color:var(--muted);font-size:13px}
footer{margin-top:24px;color:var(--muted);font-size:12px}
/* Sichtbarer Farbwähler (fix) */
input[type=color]{
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  width: 56px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
input[type=color]::-webkit-color-swatch{ border: none; border-radius: 8px; }
input[type=color]::-moz-color-swatch{ border: none; border-radius: 8px; }

/* Layout + HEX-Badge */
.color-picker{ display:flex; align-items:center; gap:10px }
.hex-badge{
  font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
  background:#0f1318;
  border:1px solid var(--border);
  border-radius:8px;
  padding:8px 10px;
  min-width:90px;
  text-align:center;
  color:var(--text);
}
