/* Tables */
table { border-collapse: collapse; width: 100%; }
table th,
table td { border: 1px solid var(--border); padding: 0.5rem 0.75rem; }
table th { font-weight: 600; }

/*
 * custom.css — Site overrides
 *
 * Uncomment and set any variable to override the default theme.
 * All values below are the built-in defaults from variables.css.
 *
 * :root {
 *
 *   Brand
 *   --brand: #90DD40;
 *   --brand-hover: #7cc835;
 *   --brand-rgb: 144, 221, 64;
 *   --brand-text: #000;
 *
 *   Header (light mode)
 *   --header-bg: rgba(255, 255, 255, 0.92);
 *   --header-text: #111111;
 *   --header-border: rgba(0, 0, 0, 0.08);
 *   --header-hover: var(--brand);
 *   --dropdown-bg: #ffffff;
 *   --dropdown-hover-bg: rgba(0, 0, 0, 0.05);
 *
 *   Banner
 *   --banner-bg: linear-gradient(90deg, #f0f0f0, #e8e8e8);
 *   --banner-text: #555555;
 *   --banner-border: rgba(0, 0, 0, 0.08);
 *
 *   Footer (light mode)
 *   --footer-bg: #f5f5f5;
 *   --footer-text: #333333;
 *   --footer-link: #555555;
 *   --footer-hover: var(--brand);
 *   --footer-border: #e0e0e0;
 *   --footer-muted: #888888;
 *
 *   Status colors
 *   --color-success: #90DD40;
 *   --color-danger: #ff5555;
 *   --color-danger-dark: #dc3545;
 *   --color-warning: #f0ad4e;
 *   --color-info: #5bc0de;
 *   --color-waiting: #ba8cf5;
 *
 *   Text
 *   --text-primary: #fff;
 *   --text-secondary: #ccc;
 *   --text-muted: #999;
 *   --text-faint: #888;
 *   --text-disabled: #777;
 *
 *   Layout
 *   --main-width: 1024px;
 *   --site-font: Inter, system-ui, -apple-system, sans-serif;
 * }
 *
 * Dark mode overrides:
 * :root[data-theme="dark"] {
 *   --header-bg: rgba(0, 0, 0, 0.8);
 *   --header-text: #ffffff;
 *   --header-border: rgba(255, 255, 255, 0.1);
 *   --dropdown-bg: #000000;
 *   --dropdown-hover-bg: rgba(255, 255, 255, 0.1);
 *   --banner-bg: linear-gradient(90deg, #1a1a1a, #2a2a2a);
 *   --banner-text: #cccccc;
 *   --banner-border: rgba(255, 255, 255, 0.05);
 *   --footer-bg: #1a1a1a;
 *   --footer-text: #ffffff;
 *   --footer-link: #aaaaaa;
 *   --footer-border: #333333;
 *   --footer-muted: #666666;
 * }
 */
