/* light 主题 - 默认主题 */
[data-theme="light"],
[data-theme="light"] *,
body:has([data-theme="light"]) {
  --color-background: #fdf6e3;
  --color-surface: #ffffff;
  --color-text: #657b83;
  --color-textSecondary: #6b7280;
  --color-primary: #3b82f6;
  --color-secondary: #859900;
  --color-accent: #10b981;
  --color-error: #ef4444;
  --color-border: #eee8d5;
  --color-hover: #eee8d5;
  --theme-radius: 8px;
  --theme-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.min-h-screen[data-theme="light"] {
  background-color: var(--color-background);
  color: var(--color-text);
}

[data-theme="light"] .card {
  border-radius: var(--theme-radius);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

[data-theme="light"] .btn-primary {
  background-color: var(--color-primary);
  border: none;
  color: white;
}

[data-theme="light"] .post-list-item {
  background: var(--color-surface);
  border-radius: var(--theme-radius);
}

[data-theme="light"] .status-badge.active {
  background-color: var(--color-primary);
  color: white;
}