
.static-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.static-controls {
  grid-template-columns: repeat(4, minmax(170px, 1fr));
}

.static-controls input[type="number"] {
  width: 100%;
}

.static-controls select {
  width: 100%;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #c8bfb2;
  border-radius: 6px;
  background: var(--panel);
  color: var(--ink);
  font: inherit;
}

.static-controls input[type="range"] {
  width: 100%;
}

.static-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.static-table th,
.static-table td {
  padding: 8px;
  border-bottom: 1px solid #e1d8cb;
  text-align: left;
  vertical-align: top;
}

.static-table th {
  background: #efe8dc;
}

.static-table button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.small-muted {
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 980px) {
  .static-controls {
    grid-template-columns: 1fr;
  }
}
