#top_gradient, #kapcsolat, #header, #footer {
    display: none !important;
}
div#wpadminbar {
    display: none !important;
}
html {
  margin: 0 !important;
}

.wrap {
  max-width: unset;
    padding: 0;
}

form.post-password-form {
    min-height: 100vh;
}

:root{
  --bg:#0b0d12;
  --panel:#111625;
  --panel2:#0f1422;
  --text:#d7def0;
  --muted:#97a3c6;
  --line:#26304b;
  --accent:#7aa2ff;
  --danger:#ff5a6a;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:var(--bg);
  color:var(--text);
}

.wrap{
  display:grid;
  grid-template-columns: 360px 1fr;
  height:100vh;
}

.panel{
  background:linear-gradient(180deg,var(--panel),var(--panel2));
  border-right:1px solid rgba(255,255,255,0.06);
  padding:14px 14px 18px;
  overflow:auto;
}

.panel h1{
  margin:0 0 12px;
  font-size:16px;
  letter-spacing:0.2px;
}

.row{ margin:10px 0; }
.row label{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-bottom:6px;
}

.row.two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}

select,input[type="number"],input[type="color"]{
  width:100%;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(0,0,0,0.25);
  color:var(--text);
  border-radius:10px;
  padding:9px 10px;
  outline:none;
}

input[type="color"]{
  height:40px;
  padding:6px;
}

.twoInputs{
  display:flex;
  gap:10px;
}

.toolGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:8px;
}

.tool{
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(0,0,0,0.25);
  color:var(--text);
  border-radius:12px;
  padding:10px 10px;
  cursor:pointer;
  font-size:13px;
}
.tool.active{
  border-color: rgba(122,162,255,0.55);
  box-shadow: 0 0 0 3px rgba(122,162,255,0.15);
}

.toggles{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.toggle{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:var(--text);
}
.toggle span{ color:var(--text); }
.toggle input{ transform: translateY(1px); }

.btns{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top:10px;
}
button{
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(0,0,0,0.25);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
  font-weight:600;
}
button.primary{
  border-color: rgba(122,162,255,0.55);
  background: rgba(122,162,255,0.12);
}
button.danger{
  border-color: rgba(255,90,106,0.55);
  background: rgba(255,90,106,0.12);
}

.fileBtn{
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px dashed rgba(255,255,255,0.18);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
  color:var(--text);
}
.fileBtn input{
  display:none;
}

.sep{
  height:1px;
  background:rgba(255,255,255,0.08);
  margin:12px 0;
}

.status{
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:13px;
  color:var(--muted);
  margin-bottom:10px;
}
.badge{
  display:inline-block;
  padding:2px 8px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
}
.badge.ok{ background:rgba(122,162,255,0.18); color:var(--text); }
.badge.warn{ background:rgba(255,90,106,0.18); color:var(--text); }

.hint{
  font-size:12px;
  color:var(--muted);
  line-height:1.35;
}
.hint .mono{
  margin-top:8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  color:rgba(255,255,255,0.65);
}

.canvasHost{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.topbar{
  height:44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 14px;
  border-bottom:1px solid rgba(255,255,255,0.06);
  background:rgba(0,0,0,0.18);
}
.topbar .title{ font-weight:800; letter-spacing:0.2px; }
.topbar .kbd{ font-size:12px; color:var(--muted); }

.stage{
  position:relative;
  flex:1;
  min-height:0;
}
#c{
  width:100%;
  height:100%;
  display:block;
}
.overlayInfo{
  position:absolute;
  left:12px;
  bottom:12px;
  font-size:12px;
  color:rgba(255,255,255,0.78);
  background:rgba(0,0,0,0.45);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:10px;
  padding:8px 10px;
  pointer-events:none;
}