
select {
  display: block;
  width: 100%;
  background: #0e0e10;
  color: #7ee787;
  border: 1px solid #3a3a3a;
  border-radius: 4px;
  padding: 8px;
  font-size:14px;
  font-family: "Consolas", monospace;
  line-height: 1.4;
  cursor: pointer;
}

select option {
  background: #0e0e10;
  color: #7ee787;
}
input[readonly] { opacity: 0.7; cursor: not-allowed; }

input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
  cursor: pointer;
  height: 6px;
  background: var(--bg-input);
  border-radius: 3px;
  outline: none;
}

input[type="color"] {
  width: 100%;
  height: 34px;
  padding: 2px;
  background: var(--bg-input);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

input[type="checkbox"] { width: 16px; height: 16px; cursor: pointer; accent-color: var(--accent); }

.monospace-field {
  font-family: var(--font-mono);
  color: var(--success);
  resize: none;
  overflow: hidden;
}
