/* ── Google Fonts: Geist (via Inter als Fallback) ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── AllBytes CI — Custom Properties ── */
:root {
  /* Farben laut AllBytes CI (oklch) */
  --color-primary:      oklch(0.55 0.23 250);      /* Vivid Blue */
  --color-primary-dark: oklch(0.45 0.23 250);
  --color-bg:           oklch(1 0 0);               /* Pure White */
  --color-text:         oklch(0.208 0.042 265.755); /* Slate-900 */
  --color-secondary:    oklch(0.96 0.01 240);       /* Very light slate */
  --color-accent:       oklch(0.93 0.03 240);       /* Light blue-grey */
  --color-muted:        oklch(0.55 0.04 250);       /* Slate-500 */
  --color-border:       oklch(0.92 0.02 240);       /* Slate-200 */

  /* Cyan für Gradient */
  --color-cyan:         oklch(0.65 0.18 210);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --radius: 0.625rem;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; color-scheme: light; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
  padding: 0 0 48px;
}

/* ── Hero Header ── */
#header-section {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 28px 32px 24px;
  margin-bottom: 0;
}

/* Subtle grid pattern */
#header-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
}

/* Gradient blur blob */
#header-section::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(0.75 0.15 210 / 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.header-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.header-text { flex: 1; min-width: 0; }

.header-greeting {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, oklch(0.35 0.23 250), oklch(0.65 0.18 210));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.header-meta {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 400;
}
.header-meta span { margin-right: 16px; }

/* ── Main Layout ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px 0;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

@media (max-width: 960px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 16px 12px 0; }
  #header-section { padding: 20px 16px; }
}

/* ── Cards ── */
.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 1px 3px oklch(0 0 0 / 0.06), 0 1px 2px oklch(0 0 0 / 0.04);
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 12px oklch(0 0 0 / 0.08), 0 2px 4px oklch(0 0 0 / 0.04);
}

.card-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 16px;
}

/* ── Glassmorphism Variante ── */
.card-glass {
  background: oklch(1 0 0 / 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid oklch(1 0 0 / 0.4);
}

/* ── Tabs (universell) ── */
.tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-muted);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 14px;
  transition: all 0.15s;
}
.tab-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: oklch(0.96 0.04 250);
}
.tab-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── News: Nachrichten-Layout ── */

/* Featured Artikel (erster) */
.news-feature {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  min-height: 240px;
}

@media (max-width: 700px) {
  .news-feature { grid-template-columns: 1fr; }
}

.news-feature-image {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.news-feature-label {
  background: oklch(0 0 0 / 0.45);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.news-feature-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--color-secondary);
}

.news-category-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.news-feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.news-feature-summary {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.55;
  flex: 1;
}

.news-feature-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

/* Nachrichten-Grid (restliche Artikel) */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.news-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.news-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 2px 8px oklch(0.55 0.23 250 / 0.1);
}

.news-card-image {
  height: 110px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.news-card-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  background: var(--color-secondary);
}

.news-card-title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
}

.news-card-summary {
  font-size: 0.78rem;
  color: var(--color-muted);
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

/* Gemeinsame News-Elemente */
.news-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.news-source-link {
  font-size: 0.72rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}
.news-source-link:hover { text-decoration: underline; }

.news-source-name { font-size: 0.72rem; color: var(--color-muted); }

.news-date {
  font-size: 0.68rem;
  color: var(--color-muted);
  font-family: var(--font-mono);
}

.feedback-btns { display: flex; gap: 6px; }

.feedback-btn {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-muted);
  cursor: pointer;
  font-size: 0.75rem;
  padding: 3px 10px;
  transition: all 0.15s;
  line-height: 1.4;
}
.feedback-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.feedback-btn.liked    { background: oklch(0.95 0.06 145); border-color: oklch(0.65 0.15 145); color: oklch(0.4 0.15 145); }
.feedback-btn.disliked { background: oklch(0.95 0.05 25);  border-color: oklch(0.65 0.18 25);  color: oklch(0.4 0.18 25); }

/* ── Staff ── */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}

.staff-item {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 400;
}

.staff-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: oklch(0.88 0.06 250);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.staff-info { flex: 1; min-width: 0; }
.staff-name { font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.staff-until { font-size: 0.68rem; color: var(--color-muted); }

.status-badge {
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  text-transform: uppercase;
  white-space: nowrap;
}
.status-office     { background: oklch(0.95 0.06 145); color: oklch(0.4 0.15 145); }
.status-homeoffice { background: oklch(0.94 0.05 250); color: var(--color-primary-dark); }
.status-vacation   { background: oklch(0.95 0.07 60);  color: oklch(0.45 0.18 60); }
.status-sick       { background: oklch(0.95 0.05 25);  color: oklch(0.4 0.18 25); }
.status-unknown    { background: var(--color-secondary); color: var(--color-muted); }

/* ── Competitors ── */
.competitor-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
}

.competitor-item {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.15s;
}
.competitor-item:hover { border-color: var(--color-primary); }

.competitor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.competitor-company { font-weight: 700; font-size: 0.82rem; color: var(--color-primary); }
.competitor-date    { font-size: 0.68rem; color: var(--color-muted); font-family: var(--font-mono); }
.competitor-title   { font-size: 0.9rem; font-weight: 600; line-height: 1.35; }
.competitor-summary { font-size: 0.8rem; color: var(--color-muted); line-height: 1.5; flex: 1; }
.competitor-link    { font-size: 0.75rem; color: var(--color-primary); text-decoration: none; font-weight: 500; margin-top: 4px; }
.competitor-link:hover { text-decoration: underline; }

/* ── Todos ── */
.todo-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 8px;
  border-radius: var(--radius);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.1s;
}
.todo-item:last-child { border-bottom: none; }
.todo-item:hover { background: var(--color-secondary); }
.todo-item.done .todo-title { color: var(--color-muted); text-decoration: line-through; }
.todo-item.done .todo-notes { opacity: 0.5; }

.todo-check-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-top: 2px;
  flex-shrink: 0;
}
.todo-checkbox { display: none; }
.todo-check-box {
  width: 16px;
  height: 16px;
  border: 2px solid var(--color-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  flex-shrink: 0;
}
.todo-checkbox:checked + .todo-check-box {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.todo-checkbox:checked + .todo-check-box::after {
  content: '✓';
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
}

.todo-content { flex: 1; min-width: 0; }
.todo-title   { font-size: 0.875rem; font-weight: 500; line-height: 1.35; margin-bottom: 3px; }
.todo-notes   { font-size: 0.78rem; color: var(--color-muted); margin-bottom: 6px; line-height: 1.4; }

.todo-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.prio-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
}
.prio-high   { background: oklch(0.95 0.05 25);  color: oklch(0.4 0.18 25); }
.prio-medium { background: oklch(0.95 0.07 60);  color: oklch(0.45 0.18 60); }
.prio-low    { background: var(--color-secondary); color: var(--color-muted); }

.todo-due { font-size: 0.72rem; color: var(--color-muted); font-family: var(--font-mono); }

/* ── Ideas ── */
.idea-list { display: flex; flex-direction: column; gap: 8px; }

.idea-item {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 0.85rem;
}
.idea-title { font-weight: 600; margin-bottom: 2px; }
.idea-desc  { font-size: 0.78rem; color: var(--color-muted); margin-bottom: 6px; font-weight: 400; }
.idea-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 4px; }
.idea-date   { font-size: 0.68rem; color: var(--color-muted); font-family: var(--font-mono); }

.btn-convert {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-muted);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 3px 10px;
  transition: all 0.15s;
}
.btn-convert:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* ── SEO ── */
.seo-metrics { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }

.seo-metric {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  min-width: 120px;
}
.seo-metric-label { font-size: 0.68rem; color: var(--color-muted); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
.seo-metric-value { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; color: var(--color-text); }

.keyword-list { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }

.keyword-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  padding: 4px 6px;
  border-radius: 6px;
}
.keyword-item:hover { background: var(--color-secondary); }
.keyword-pos  { font-weight: 700; min-width: 28px; color: var(--color-primary); font-family: var(--font-mono); font-size: 0.8rem; }
.keyword-name { flex: 1; font-weight: 400; }
.trend-up   { color: oklch(0.5 0.15 145); font-weight: 600; font-size: 0.78rem; }
.trend-down { color: oklch(0.5 0.18 25);  font-weight: 600; font-size: 0.78rem; }
.trend-flat { color: var(--color-muted);  font-size: 0.78rem; }

.seo-meta {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.seo-meta strong { color: var(--color-text); }
.seo-updated { font-size: 0.72rem; font-family: var(--font-mono); }

.blog-chips { display: flex; flex-wrap: wrap; gap: 6px; }

.chip {
  background: oklch(0.94 0.05 250);
  border: 1px solid oklch(0.88 0.08 250);
  border-radius: 20px;
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 12px;
}

/* ── E-Mail ── */
.emails-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.sync-btn {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-muted);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 12px;
  transition: all 0.15s;
}
.sync-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.sync-btn.syncing { opacity: 0.6; pointer-events: none; }

.email-list { display: flex; flex-direction: column; gap: 1px; }

.email-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.1s;
  border-left: 3px solid transparent;
  position: relative;
}
.email-item:hover { background: var(--color-secondary); }
.email-item.unread { border-left-color: var(--color-primary); }

.email-item.priority-critical { border-left-color: oklch(0.55 0.2 25); }
.email-item.priority-medium   { border-left-color: oklch(0.6 0.18 60); }
.email-item.priority-normal   { border-left-color: var(--color-border); }
.email-item.unread.priority-critical { border-left-color: oklch(0.5 0.22 25); }

.email-priority-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.priority-critical .email-priority-dot { background: oklch(0.55 0.2 25); }
.priority-medium   .email-priority-dot { background: oklch(0.6 0.18 60); }
.priority-normal   .email-priority-dot { background: var(--color-border); }

.email-body { flex: 1; min-width: 0; }

.email-from {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--color-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.email-item.unread .email-from { color: var(--color-text); font-weight: 600; }

.email-subject {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.email-item.unread .email-subject { font-weight: 600; }

.email-snippet {
  font-size: 0.75rem;
  color: var(--color-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.email-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.email-date {
  font-size: 0.68rem;
  color: var(--color-muted);
  font-family: var(--font-mono);
  white-space: nowrap;
}

.email-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
}
.badge-critical { background: oklch(0.95 0.05 25);  color: oklch(0.4 0.2 25); }
.badge-medium   { background: oklch(0.95 0.07 60);  color: oklch(0.4 0.18 60); }
.badge-normal   { background: var(--color-secondary); color: var(--color-muted); }

.email-sync-status {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 10px;
  font-family: var(--font-mono);
}

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: oklch(0 0 0 / 0.4);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: 0 20px 60px oklch(0 0 0 / 0.2);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-muted);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 4px 10px;
  transition: all 0.15s;
}
.modal-close:hover { background: var(--color-accent); color: var(--color-text); }

.modal-subject {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.35;
  padding-right: 40px;
}

.modal-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.modal-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: var(--color-muted);
}
.modal-meta strong { color: var(--color-text); }

.modal-snippet {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 20px;
}

.modal-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0 0 16px;
}

.modal-todo-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 10px;
}

.modal-todo-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.modal-todo-input {
  flex: 1;
  min-width: 0;
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  padding: 8px 12px;
  outline: none;
  transition: border-color 0.15s;
}
.modal-todo-input:focus { border-color: var(--color-primary); }

.modal-list-select {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  padding: 8px 12px;
  outline: none;
  cursor: pointer;
}

.modal-create-btn {
  background: var(--color-primary);
  border: none;
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  transition: background 0.15s;
  white-space: nowrap;
}
.modal-create-btn:hover { background: var(--color-primary-dark); }
.modal-create-btn:disabled { opacity: 0.6; pointer-events: none; }

.modal-success {
  background: oklch(0.95 0.06 145);
  border: 1px solid oklch(0.8 0.1 145);
  border-radius: var(--radius);
  color: oklch(0.4 0.15 145);
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 10px;
  padding: 8px 12px;
}

/* ── Placeholder ── */
.placeholder {
  color: var(--color-muted);
  font-size: 0.85rem;
  font-style: italic;
  padding: 8px 0;
  font-weight: 400;
}

/* ── Section Spacing ── */
.section { margin-bottom: 16px; }

/* ── Divider ── */
hr { border: none; border-top: 1px solid var(--color-border); margin: 12px 0; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--color-secondary); }
::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 3px; }

/* ── Selection ── */
::selection { background: oklch(0.88 0.06 210); color: oklch(0.3 0.12 210); }
