form { display: grid; gap: 14px; }
label { display: grid; gap: 7px; color: var(--muted); font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #090f19;
  color: var(--text);
  min-height: 42px;
  padding: 10px 12px;
  font: inherit;
}
textarea { resize: vertical; }
.check { display: flex; grid-template-columns: none; align-items: center; gap: 10px; }
.check input { width: auto; min-height: 0; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0; }
.link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
}
.row-actions { display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.row-actions form { display: inline-flex; gap: 0; }
.list-row { align-items: end; margin-bottom: 10px; }
.list-row .remove-row { min-height: 42px; justify-self: start; }
.flash {
  width: min(1180px, calc(100% - 32px));
  margin: 12px auto;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.flash-success { border-color: var(--lime); }
.flash-error { border-color: var(--danger); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-size: .82rem; text-transform: uppercase; }
