/* Hatchino Documentation - Main Stylesheet */

/* ============================================================
   CSS CUSTOM PROPERTIES (Theme System)
   ============================================================ */

:root {
  /* --- Light Theme (Default) --- */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #e9ecef;
  --bg-sidebar: #f1f3f5;
  --bg-topbar: rgba(255, 255, 255, 0.95);
  --bg-card: #ffffff;
  --bg-code: #f4f4f5;
  --bg-hover: rgba(0, 0, 0, 0.04);
  --bg-active: rgba(0, 0, 0, 0.06);

  --text-primary: #1a1a2e;
  --text-secondary: #495057;
  --text-tertiary: #868e96;
  --text-inverse: #ffffff;

  --border-color: #dee2e6;
  --border-light: #e9ecef;
  --border-focus: #868e96;

  --accent-primary: #d4a017;
  --accent-hover: #c49415;
  --accent-light: rgba(212, 160, 23, 0.1);
  --accent-border: rgba(212, 160, 23, 0.3);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

  --sidebar-width: 260px;
  --toc-width: 220px;
  --topbar-height: 56px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;

  /* Alert colors */
  --alert-warning-bg: #fff3cd;
  --alert-warning-border: #ffc107;
  --alert-warning-text: #664d03;
  --alert-danger-bg: #f8d7da;
  --alert-danger-border: #f5c2c7;
  --alert-danger-text: #842029;
  --alert-info-bg: #cfe2ff;
  --alert-info-border: #6ea8fe;
  --alert-info-text: #084298;
  --alert-success-bg: #d1e7dd;
  --alert-success-border: #75b798;
  --alert-success-text: #0f5132;

  /* Status indicator colors */
  --status-green: #2f9e44;
  --status-yellow: #e67700;
  --status-red: #e03131;
  --status-blue: #1971c2;
}

[data-theme="dark"] {
  --bg-primary: #0d1117;
  --bg-secondary: #161b22;
  --bg-tertiary: #21262d;
  --bg-sidebar: #0d1117;
  --bg-topbar: rgba(13, 17, 23, 0.95);
  --bg-card: #161b22;
  --bg-code: #21262d;
  --bg-hover: rgba(255, 255, 255, 0.04);
  --bg-active: rgba(255, 255, 255, 0.08);

  --text-primary: #e6edf3;
  --text-secondary: #8b949e;
  --text-tertiary: #6e7681;
  --text-inverse: #0d1117;

  --border-color: #30363d;
  --border-light: #21262d;
  --border-focus: #6e7681;

  --accent-primary: #d4a017;
  --accent-hover: #e6b422;
  --accent-light: rgba(212, 160, 23, 0.15);
  --accent-border: rgba(212, 160, 23, 0.4);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);

  --alert-warning-bg: #2d2305;
  --alert-warning-border: #664d03;
  --alert-warning-text: #ffd866;
  --alert-danger-bg: #2d0b0b;
  --alert-danger-border: #842029;
  --alert-danger-text: #f5a0a0;
  --alert-info-bg: #0a2540;
  --alert-info-border: #084298;
  --alert-info-text: #9ec5fe;
  --alert-success-bg: #0a2e1a;
  --alert-success-border: #0f5132;
  --alert-success-text: #8fd1a0;
}

/* ============================================================
   BASE RESET & TYPOGRAPHY
   ============================================================ */

@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Vazirmatn', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  direction: rtl;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background var(--transition-normal), color var(--transition-normal);
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================================
   TOPBAR
   ============================================================ */

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: var(--topbar-height);
  background: var(--bg-topbar);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  z-index: 100;
  transition: background var(--transition-normal), border-color var(--transition-normal);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-primary);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.menu-btn:hover {
  background: var(--bg-hover);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

.brand:hover {
  text-decoration: none;
  color: var(--text-primary);
}

.brand .mark {
  width: 32px;
  height: 32px;
  background: var(--accent-primary);
  color: var(--text-inverse);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}

.brand small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-tertiary);
  line-height: 1.2;
}

.search-box {
  position: relative;
  flex: 1;
  max-width: 400px;
  margin: 0 auto;
}

.search-box .icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  font-size: 14px;
  pointer-events: none;
}

.search-box input {
  width: 100%;
  padding: 8px 40px 8px 40px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 13px;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.search-box input::placeholder {
  color: var(--text-tertiary);
}

.search-box input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.search-box kbd {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 3px;
  padding: 1px 6px;
  font-size: 11px;
  color: var(--text-tertiary);
  font-family: inherit;
  pointer-events: none;
}

.search-results {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 320px;
  overflow-y: auto;
  display: none;
  z-index: 200;
}

.search-results.active {
  display: block;
}

.search-result-item {
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition-fast);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: var(--bg-hover);
}

.search-result-item .title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.search-result-item .excerpt {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 6px 10px;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 16px;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 4px;
}

.theme-toggle:hover {
  background: var(--bg-hover);
  border-color: var(--border-focus);
  color: var(--text-primary);
}

.color-picker-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.color-picker-btn {
  background: none;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 6px 10px;
  cursor: pointer;
  font-size: 16px;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 4px;
}

.color-picker-btn:hover {
  background: var(--bg-hover);
  border-color: var(--border-focus);
}

.color-picker-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  display: none;
  z-index: 200;
  min-width: 200px;
}

.color-picker-dropdown.active {
  display: block;
}

.color-picker-dropdown label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.color-presets {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}

.color-preset {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.color-preset:hover {
  transform: scale(1.15);
}

.color-preset.active {
  border-color: var(--text-primary);
  box-shadow: 0 0 0 2px var(--bg-primary);
}

.custom-color-input {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-color-input input[type="color"] {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
}

.custom-color-input span {
  font-size: 12px;
  color: var(--text-secondary);
}

.ver {
  font-size: 11px;
  color: var(--text-tertiary);
  background: var(--bg-tertiary);
  padding: 2px 8px;
  border-radius: 10px;
}

/* ============================================================
   APP LAYOUT
   ============================================================ */

.app {
  display: flex;
  padding-top: var(--topbar-height);
  min-height: 100vh;
}

/* ============================================================
   SIDEBAR
   ============================================================ */

.sidebar {
  position: fixed;
  top: var(--topbar-height);
  right: 0;
  bottom: 0;
  width: var(--sidebar-width);
  background: var(--bg-sidebar);
  border-left: 1px solid var(--border-color);
  overflow-y: auto;
  padding: 16px 0;
  z-index: 50;
  transition: transform var(--transition-normal), background var(--transition-normal), border-color var(--transition-normal);
}

.sidebar-section {
  margin-bottom: 8px;
}

.sidebar-section-title {
  padding: 6px 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.sidebar-link:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
  text-decoration: none;
}

.sidebar-link.active {
  color: var(--accent-primary);
  background: var(--accent-light);
  font-weight: 600;
}

.sidebar-link .icon {
  font-size: 14px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.sidebar-link.sub {
  padding-right: 48px;
  font-size: 12px;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */

.main {
  flex: 1;
  margin-right: var(--sidebar-width);
  margin-left: var(--toc-width);
  padding: 32px 48px;
  max-width: calc(100% - var(--sidebar-width) - var(--toc-width));
  min-height: calc(100vh - var(--topbar-height));
}

.crumbs {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.crumbs a {
  color: var(--text-tertiary);
}

.crumbs a:hover {
  color: var(--accent-primary);
}

.crumbs .sep {
  color: var(--border-color);
}

/* ============================================================
   CONTENT TYPOGRAPHY
   ============================================================ */

.content h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.4;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
}

.content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.5;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 24px;
  margin-bottom: 10px;
}

.content p {
  margin-bottom: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.content strong {
  color: var(--text-primary);
  font-weight: 700;
}

.content ul,
.content ol {
  margin-bottom: 14px;
  padding-right: 24px;
}

.content li {
  margin-bottom: 6px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.content hr {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 32px 0;
}

/* ============================================================
   FIGURES & IMAGES
   ============================================================ */

.content figure {
  margin: 24px auto;
  text-align: center;
  max-width: 100%;
}

.content figure img {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.content figure img:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-md);
}

.content figure figcaption {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 8px;
  line-height: 1.5;
}

/* ============================================================
   TABLES
   ============================================================ */

.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.content thead {
  background: var(--bg-tertiary);
}

.content th {
  padding: 12px 16px;
  text-align: right;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-color);
  white-space: nowrap;
}

.content td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  vertical-align: top;
}

.content tbody tr:last-child td {
  border-bottom: none;
}

.content tbody tr:hover {
  background: var(--bg-hover);
}

/* ============================================================
   ALERTS / CALLOUTS
   ============================================================ */

.alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin: 20px 0;
  border: 1px solid;
  font-size: 13px;
  line-height: 1.7;
}

.alert-warning {
  background: var(--alert-warning-bg);
  border-color: var(--alert-warning-border);
  color: var(--alert-warning-text);
}

.alert-danger {
  background: var(--alert-danger-bg);
  border-color: var(--alert-danger-border);
  color: var(--alert-danger-text);
}

.alert-info {
  background: var(--alert-info-bg);
  border-color: var(--alert-info-border);
  color: var(--alert-info-text);
}

.alert-success {
  background: var(--alert-success-bg);
  border-color: var(--alert-success-border);
  color: var(--alert-success-text);
}

.alert .alert-title {
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   CIRCLE BADGES (Numbered lists)
   ============================================================ */

.rtl-circle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.circle-badge-base {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.rtl-text {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ============================================================
   BLOCKQUOTE / NOTE
   ============================================================ */

.content blockquote,
.content > blockquote {
  border-right: 4px solid var(--accent-primary);
  padding: 14px 18px;
  margin: 20px 0;
  background: var(--accent-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.content blockquote p,
.content > blockquote p {
  margin-bottom: 0;
}

/* ============================================================
   TOC (Table of Contents - Right sidebar)
   ============================================================ */

.toc {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  bottom: 0;
  width: var(--toc-width);
  padding: 24px 16px;
  overflow-y: auto;
  border-right: 1px solid var(--border-color);
  background: var(--bg-primary);
  transition: background var(--transition-normal), border-color var(--transition-normal);
}

.toc-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.toc ul {
  list-style: none;
  padding: 0;
}

.toc li {
  margin-bottom: 4px;
}

.toc a {
  display: block;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--text-tertiary);
  text-decoration: none;
  border-right: 2px solid transparent;
  transition: all var(--transition-fast);
  line-height: 1.5;
}

.toc a:hover {
  color: var(--text-primary);
  text-decoration: none;
}

.toc a.active {
  color: var(--accent-primary);
  border-right-color: var(--accent-primary);
  font-weight: 600;
}

.toc a.toc-h3 {
  padding-right: 24px;
  font-size: 11px;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: zoom-out;
}

.modal.active {
  display: flex;
}

.modal img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.modal .close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  backdrop-filter: blur(8px);
  font-family: inherit;
  transition: background var(--transition-fast);
}

.modal .close:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.8;
}

.site-footer .f-brand {
  font-weight: 600;
  color: var(--text-secondary);
}

.site-footer .f-mono {
  font-family: 'Courier New', monospace;
  font-size: 11px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  .toc {
    display: none;
  }
  .main {
    margin-left: 0;
    max-width: calc(100% - var(--sidebar-width));
  }
}

@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }
  .sidebar {
    transform: translateX(100%);
  }
  .sidebar.open {
    transform: translateX(0);
    box-shadow: var(--shadow-lg);
  }
  .main {
    margin-right: 0;
    margin-left: 0;
    max-width: 100%;
    padding: 24px 16px;
  }
  .search-box {
    max-width: 200px;
  }
  .brand small {
    display: none;
  }
  .content h1 {
    font-size: 22px;
  }
  .content h2 {
    font-size: 18px;
  }
  .content h3 {
    font-size: 16px;
  }
  .content table {
    font-size: 12px;
  }
  .content th,
  .content td {
    padding: 8px 10px;
  }
  .topbar {
    padding: 0 12px;
  }
}

@media (max-width: 480px) {
  .search-box {
    display: none;
  }
  .topbar-actions .ver {
    display: none;
  }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-tertiary);
}

/* ============================================================
   UTILITIES
   ============================================================ */

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-tertiary);
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* Inline images (for Setting.png, log.png) */
.content img.inline-icon {
  height: 32px;
  display: inline-block;
  vertical-align: -3px;
  margin: 0 4px;
}

/* Status color dots */
.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
}

.status-dot.green { background: var(--status-green); }
.status-dot.yellow { background: var(--status-yellow); }
.status-dot.red { background: var(--status-red); }
.status-dot.blue { background: var(--status-blue); }
