/* design-system.css v1.12.3 */
:root {
  --background: #fafbfc;
  --foreground: #1a1a1a;
  --card: #ffffff;
  --card-foreground: #1a1a1a;
  --popover: #ffffff;
  --popover-foreground: #1a1a1a;
  --primary: #73b6e4 !important;
  --primary-foreground: #ffffff;
  --secondary: #f1f5f9;
  --secondary-foreground: #475569;
  --muted: #f8fafc;
  --muted-foreground: #64748b;
  --accent: #f1f5f9;
  --accent-foreground: #475569;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #e2e8f0;
  --input: #e2e8f0;
  --ring: #73b6e4;
  --chart-1: #73b6e4;
  --chart-2: #60a5fa;
  --chart-3: #3b82f6;
  --chart-4: #2563eb;
  --chart-5: #1d4ed8;
  --sidebar: #f8fafc;
  --sidebar-foreground: #1a1a1a;
  --sidebar-primary: #73b6e4;
  --sidebar-primary-foreground: #ffffff;
  --sidebar-accent: #f1f5f9;
  --sidebar-accent-foreground: #475569;
  --sidebar-border: #e2e8f0;
  --sidebar-ring: #73b6e4;
  --font-sans: Inter, sans-serif;
  --font-serif: Merriweather, serif;
  --font-mono: JetBrains Mono, monospace;
  --radius: 0.5rem;
  --shadow: 0px 4px 8px -1px hsl(0 0% 0% / 0.1),
    0px 1px 2px -2px hsl(0 0% 0% / 0.1);
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
}

.card {
  background: var(--card);
  color: var(--card-foreground);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* .btn 樣式用於所有主動作按鈕，v1.1.8 */
.btn {
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: var(--radius);
  padding: 0.7em 1.5em;
  font-size: 1.08em;
  font-family: var(--font-sans);
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s;
}
.btn:hover {
  background: var(--accent);
  color: var(--accent-foreground);
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--card);
  color: var(--card-foreground);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 1.08em;
}
.table th,
.table td {
  padding: 1em 1.2em;
  border-bottom: 1px solid var(--border);
}
.table th {
  background: var(--muted);
  color: var(--muted-foreground);
  font-weight: 700;
  font-size: 1.13em;
}
.table tr:last-child td {
  border-bottom: none;
}

.chart-legend {
  font-size: 1.1em;
  color: var(--muted-foreground);
  margin-top: 0.5em;
  letter-spacing: 0.5px;
}

@media (max-width: 600px) {
  .card,
  .table {
    padding: 1rem 0.5rem;
    font-size: 0.98em;
  }
  .card-title {
    font-size: 1.08rem;
  }
  .btn {
    font-size: 1em;
  }
}

/* v1.1.9 */

/* v1.2.0 */

/* v1.2.1 */
