/* minutes wiki style — monochrome dark */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
:root {
  --bg: #0f1117;
  --surface: #1a1d27;
  --card-bg: #1a1d27;
  --border: #2a2e3d;
  --accent: #7c6aef;
  --accent-light: #9d8ff2;
  --accent-hover: #bbb;
  --text: #e4e4e7;
  --text-dim: #9ca3af;
  --tag-bg: #7c6aef22;
  --tag-text: #a99cf5;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  min-height: 100vh;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
a { color: var(--accent-light); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }
h1 { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--text); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: 1.05rem; font-weight: 600; color: var(--accent-light); margin: 1.5rem 0 0.8rem; border-bottom: 1px solid var(--border); padding-bottom: 0.4rem; }
h3 { font-size: 0.95rem; margin: 1rem 0 0.5rem; }
p { margin-bottom: 0.8rem; font-size: 0.92rem; }
ul, ol { margin: 0.5rem 0 1rem 1.3rem; }
li { margin-bottom: 0.4rem; font-size: 0.92rem; }
code { background: var(--card-bg); padding: 0.15em 0.4em; border-radius: 3px; font-size: 0.9em; }
pre { background: var(--card-bg); padding: 1rem; border-radius: 6px; overflow-x: auto; margin: 1rem 0; }
pre code { background: none; padding: 0; }
table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
th, td { text-align: left; padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
th { color: var(--text-dim); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; }
tr:hover td { background: var(--surface); }
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--accent); }
.card-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.3rem; }
.card-date { color: var(--text-dim); font-size: 0.85rem; }
.card-summary { color: var(--text-dim); font-size: 0.9rem; margin-top: 0.5rem; }
.back-link { display: inline-block; margin-bottom: 1.5rem; font-size: 0.9rem; }
.header-bar { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 2rem; }
.header-bar img, .header-bar svg { width: 32px; height: 32px; }
.empty { text-align: center; color: var(--text-dim); padding: 3rem 0; }
@media (max-width: 640px) {
  body { padding: 1rem; }
  h1 { font-size: 1.4rem; }
}