﻿:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body {
  margin: 0;
  background: #f5f7fb;
  color: #1f2937;
}
.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px;
  display: grid;
  gap: 20px;
}
.panel {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.sub { color: #6b7280; }
.form { display: grid; gap: 12px; }
input, textarea, button {
  font: inherit;
}
input, textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
}
textarea { min-height: 120px; resize: vertical; }
.actions, .list-head { display: flex; gap: 10px; align-items: center; justify-content: space-between; }
button {
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  background: #2563eb;
  color: white;
  cursor: pointer;
}
button.secondary {
  background: #e5e7eb;
  color: #111827;
}
.hidden { display: none; }
.status { min-height: 24px; color: #2563eb; }
.items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
}
.item h3 { margin: 0 0 8px; }
.item p { white-space: pre-wrap; }
.item .meta { color: #6b7280; font-size: 12px; }
.item .row { display: flex; gap: 8px; margin-top: 10px; }
