.wrap {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  max-width: 980px;
  margin: 24px auto;
  padding: 0 16px;
}

.card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
  background: #fff;
}

.inner {
  background: #fafafa;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 12px 0;
}

label {
  display: grid;
  gap: 6px;
  font-size: 14px;
}

input {
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
}

button {
  padding: 10px 14px;
  border: 1px solid #111827;
  border-radius: 10px;
  background: #111827;
  color: white;
  cursor: pointer;
}

button.secondary {
  background: #fff;
  color: #111827;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.msg {
  min-height: 18px;
  color: #b91c1c;
}

.muted {
  color: #6b7280;
}

.hidden {
  display: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

th,
td {
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  padding: 8px;
  font-size: 14px;
}

