/* 主题样式 */

:root {
  /* 明亮主题 */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #e9ecef;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --border-color: #dee2e6;
  --navbar-bg: #ffffff;
  --navbar-hover-bg: #e9ecef;
  --primary-color: #007bff;
  --primary-dark: #0069d9;
  --secondary-color: #6c757d;
  --secondary-dark: #5a6268;
  --success-bg: #d4edda;
  --success-text: #155724;
  --success-border: #c3e6cb;
  --error-bg: #f8d7da;
  --error-text: #721c24;
  --error-border: #f5c6cb;
  --info-bg: #d1ecf1;
  --info-text: #0c5460;
  --info-border: #bee5eb;
  --table-row-hover: #f8f9fa;
}

/* 暗夜主题 */
[data-theme="dark"] {
  --bg-primary: #121212;
  --bg-secondary: #1e1e1e;
  --bg-tertiary: #2d2d2d;
  --text-primary: #e0e0e0;
  --text-secondary: #9e9e9e;
  --border-color: #444444;
  --navbar-bg: #1e1e1e;
  --navbar-hover-bg: #2d2d2d;
  --primary-color: #4dabf7;
  --primary-dark: #339af0;
  --secondary-color: #747474;
  --secondary-dark: #5c5c5c;
  --success-bg: #204220;
  --success-text: #a0d6a0;
  --success-border: #3a7a3a;
  --error-bg: #422020;
  --error-text: #d6a0a0;
  --error-border: #7a3a3a;
  --info-bg: #1c3a42;
  --info-text: #8bd6e0;
  --info-border: #3a6a7a;
  --table-row-hover: #2a2a2a;
}

/* 主题切换按钮 */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.theme-toggle:hover {
  background-color: var(--navbar-hover-bg);
}