/* User Provided Stylesheet */

/* ============================================= */
/* Enhanced MyST Markdown Theme for Books        */
/* Full Dark Mode Support and All Fixes         */
/* ============================================= */

:root {
  /* Professional Blue Color Palette */
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;
  
  /* Accent Colors */
  --accent-400: #818cf8;
  --accent-500: #6366f1;
  --accent-600: #4f46e5;
  
  /* Neutral Colors */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Status Colors */
  --success-500: #10b981;
  --success-600: #059669;
  --info-500: #0ea5e9;
  --info-600: #0284c7;
  --warning-500: #f59e0b;
  --warning-600: #d97706;
  --danger-500: #ef4444;
  --danger-600: #dc2626;
  
  /* Semantic Colors */
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-700);
  --text-muted: var(--gray-500);
  --bg-primary: #ffffff;
  --bg-secondary: var(--gray-50);
  --border-primary: var(--gray-200);
  --border-secondary: var(--gray-300);

  /* Layout Variables */
  --sidebar-width: 240px;
  --toc-width: 200px;
  --max-content-width: 1400px;
}

/* ======================= */
/* BASE TYPOGRAPHY         */
/* ======================= */

body, .myst, .site {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 
               Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-secondary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  font-size: 16px;
  margin: 0;
  padding: 0;
}

/* Layout Structure */
.site-layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr var(--toc-width);
  grid-template-areas: "primary-sidebar main-content secondary-sidebar";
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 2rem 1rem;
  background: inherit;
}

.primary-sidebar {
  grid-area: primary-sidebar;
  padding-right: 0.75rem;
  border-right: 1px solid var(--border-primary);
}

.main-content {
  grid-area: main-content;
  padding: 0 1.5rem;
}

.secondary-sidebar {
  grid-area: secondary-sidebar;
  padding-left: 0.75rem;
  border-left: 1px solid var(--border-primary);
}

/* Hiding Sidebars */
.hide-toc .primary-sidebar,
.hide-outline .secondary-sidebar {
  display: none;
}

.hide-toc .main-content,
.hide-outline .main-content {
  grid-column: span 2;
}

/* Full-width Content */
.col-page-right {
  grid-column: 1 / -1;
}

/* Content Containers */
.content, main, article {
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: inherit;
}

p {
  margin: 1.5rem 0;
  font-size: 1.125rem;
  color: var(--text-secondary);
}

p + p {
  margin-top: 1.25rem;
}

/* List Styling */
ul:not(.secondary-sidebar ul), ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

ul:not(.secondary-sidebar ul) li {
  margin: 0.5rem 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

ul:not(.secondary-sidebar ul) li::marker {
  content: "-";
  color: var(--primary-500);
  font-weight: 600;
}

ol li {
  margin: 0.5rem 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

ol li::marker {
  color: var(--primary-500);
  font-weight: 600;
}

/* Checkbox Styling for MyST Task Lists */
.task-list-item {
  list-style: none !important;
  display: flex;
  align-items: flex-start;
  margin: 0.5rem 0;
  padding-left: 0;
}

.task-list-item-checkbox {
  margin-right: 0.75rem;
  margin-top: 0.2rem;
  width: 1.2rem;
  height: 1.2rem;
  accent-color: var(--primary-500);
  cursor: pointer;
  flex-shrink: 0;
}

.task-list-item-checkbox:checked {
  accent-color: var(--success-500);
}

/* Blockquotes */
blockquote {
  margin: 0.5rem 0;
  padding: 0.25rem 1rem;
  border-left: 3px solid var(--primary-300);
  color: var(--text-secondary);
  font-style: italic;
  position: relative;
}

/* Gradient Logo for To-Do List */
.text-gradient-todo {
  background: linear-gradient(135deg, #c026d3, #f0abfc, var(--primary-400));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.2rem 0.4rem;
}

/* ======================= */
/* GORGEOUS HEADINGS       */
/* ======================= */

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin: 2.5rem 0 1.5rem;
  position: relative;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

h1 {
  font-size: 3rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 4rem;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
  border-radius: 2px;
}

h2 {
  font-size: 2.25rem;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid var(--primary-200);
  padding-bottom: 0.5rem;
}

h3 {
  font-size: 1.75rem;
  color: var(--primary-600);
  position: relative;
  padding-left: 1rem;
}

h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 4px;
  height: 1.5rem;
  background: linear-gradient(180deg, var(--primary-500), var(--primary-300));
  border-radius: 2px;
}

h4 {
  font-size: 1.5rem;
  color: var(--primary-500);
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  color: var(--primary-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 2rem 0 1rem 0;
}

/* ======================= */
/* ELEGANT LINKS           */
/* ======================= */

a {
  color: var(--primary-500);
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 58, 237, 0.3);
  transition: all 0.3s ease;
  padding-bottom: 0.1em;
}

a:hover {
  color: var(--accent-500);
  border-bottom-color: currentColor;
}

/* ======================= */
/* SOPHISTICATED CARDS     */
/* ======================= */

.card, .grid-item-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  margin: 2rem 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  color: var(--gray-700);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.card-header {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-body {
  padding: 1.5rem;
  flex-grow: 1;
  border: 1px solid var(--gray-200);
  border-top: none;
}

.card-footer {
  padding: 1rem 1.5rem;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  font-size: 0.9rem;
  color: var(--gray-600);
}

.card[link], .card[url] {
  cursor: pointer;
  text-decoration: none;
}

.card[link]:hover, .card[url]:hover {
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

/* ======================= */
/* LUXURY ADMONITIONS      */
/* ======================= */

.admonition {
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  background: white;
  border-left: 4px solid;
}

.admonition-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admonition-title::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.admonition.tip {
  border-left-color: var(--success-500);
  background: linear-gradient(to right, rgba(16, 185, 129, 0.03), white);
}

.admonition.tip .admonition-title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2310b981'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

.admonition.note {
  border-left-color: var(--info-500);
  background: linear-gradient(to right, rgba(59, 130, 246, 0.03), white);
}

.admonition.note .admonition-title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233b82f6'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
}

.admonition.important {
  border-left-color: var(--warning-500);
  background: linear-gradient(to right, rgba(245, 158, 11, 0.03), white);
}

.admonition.important .admonition-title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f59e0b'%3E%3Cpath d='M12 2L1 12h3v9h6v-6h4v6h6v-9h3L12 2zm-2 15H9v-3h1v3zm0-5H9V7h1v5z'/%3E%3C/svg%3E");
}

/* ======================= */
/* BEAUTIFUL CODE BLOCKS   */
/* ======================= */

pre {
  background: linear-gradient(135deg, #1e293b, #334155);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  overflow-x: auto;
  box-shadow: 
    0 4px 20px rgba(30, 41, 59, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

pre::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 
    18px 0 0 #f59e0b,
    36px 0 0 #10b981;
}

code {
  font-family: 'JetBrains Mono', 'Fira Code', Consolas, monospace;
  font-size: 0.9rem;
  color: #e2e8f0;
  line-height: 1.6;
}

/* Inline code */
:not(pre) > code {
  color: var(--primary-600);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ======================= */
/* SOPHISTICATED BUTTONS   */
/* ======================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
  color: white;
  box-shadow: 
    0 4px 14px rgba(99, 102, 241, 0.25),
    0 2px 6px rgba(99, 102, 241, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
  transform: translateY(-2px);
  box-shadow: 
    0 6px 20px rgba(99, 102, 241, 0.35),
    0 3px 8px rgba(99, 102, 241, 0.2);
}

.btn-secondary {
  background: white;
  color: var(--primary-600);
  border: 2px solid var(--primary-200);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
}

.btn-secondary:hover {
  background: var(--primary-50);
  border-color: var(--primary-300);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--primary-600);
  border: 2px solid var(--primary-400);
}

.btn-outline:hover {
  background: var(--primary-500);
  color: white;
  transform: translateY(-1px);
}

/* ======================= */
/* ELEGANT FORMS           */
/* ======================= */

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-primary);
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--primary-400);
  box-shadow: 
    0 0 0 3px rgba(99, 102, 241, 0.1),
    0 2px 8px rgba(99, 102, 241, 0.08);
}

.form-input::placeholder {
  color: var(--text-muted);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* ======================= */
/* ENHANCED NAVIGATION     */
/* ======================= */

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: block;
}

.secondary-sidebar .nav-link {
  list-style: none;
}

.secondary-sidebar ul {
  list-style: none;
  padding-left: 0;
}

.nav-link:hover {
  color: var(--primary-600);
  background: rgba(99, 102, 241, 0.08);
  transform: translateX(2px);
}

.nav-link.active {
  color: var(--primary-600);
  background: rgba(99, 102, 241, 0.1);
  font-weight: 600;
}

.nav-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 1.5rem;
  background: var(--primary-500);
  border-radius: 0 2px 2px 0;
}

/* Top Navigation */
.top-nav {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-primary);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.action-button {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background: var(--primary-500);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.action-button:hover {
  background: var(--primary-600);
}

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

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: 0 8px 32px rgba(30, 64, 175, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: white;
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

th {
  background: var(--primary-100);
  color: var(--primary-700);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  position: relative;
  border-bottom: 2px solid var(--primary-300);
}

th::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.3), 
    rgba(255, 255, 255, 0.1), 
    rgba(255, 255, 255, 0.3));
}

td {
  color: var(--gray-700);
  font-size: 0.95rem;
}

tr:nth-child(even) td {
  background-color: rgba(59, 130, 246, 0.02);
}

tr:hover td {
  background-color: rgba(59, 130, 246, 0.06);
  transform: translateY(-1px);
}

/* Table responsive design */
@media (max-width: 768px) {
  table {
    font-size: 0.85rem;
  }
  
  th, td {
    padding: 0.5rem 0.75rem;
  }
}

/* ======================= */
/* DARK MODE SUPPORT       */
/* ======================= */

@media (prefers-color-scheme: dark) {
  body, body.myst, .site, .site-layout, .content, main, article {
    background: #111827 !important;
    color: #e5e7eb !important;
  }

  .primary-sidebar, .secondary-sidebar {
    background: #111827 !important;
    border-color: #374151 !important;
  }

  .card, .admonition {
    background: #1f2937 !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3) !important;
  }

  .card-body {
    border-color: #374151 !important;
  }

  pre {
    background: #1e293b !important;
  }

  table {
    background: #1f2937 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
  }

  th {
    background: #374151 !important;
    color: #e5e7eb !important;
  }

  td {
    color: #d1d5db !important;
    border-color: #374151 !important;
  }

  tr:nth-child(even) td {
    background-color: rgba(55, 65, 81, 0.5) !important;
  }

  tr:hover td {
    background-color: rgba(124, 58, 237, 0.1) !important;
  }

  .task-list-item-checkbox {
    accent-color: var(--primary-400) !important;
  }

  .task-list-item-checkbox:checked {
    accent-color: var(--success-600) !important;
  }

  .text-gradient-todo {
    background: linear-gradient(135deg, #d946ef, #f0abfc, #93c5fd) !important;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  a {
    color: #93c5fd !important;
    border-bottom-color: rgba(147, 197, 253, 0.3) !important;
  }

  a:hover {
    color: #f0abfc !important;
    border-bottom-color: #f0abfc !important;
  }

  .nav-link {
    color: #d1d5db !important;
  }

  .nav-link:hover {
    color: #93c5fd !important;
    background: rgba(147, 197, 253, 0.1) !important;
  }

  .nav-link.active {
    color: #93c5fd !important;
    background: rgba(147, 197, 253, 0.2) !important;
  }

  .top-nav {
    background: #1f2937 !important;
    border-bottom-color: #374151 !important;
  }

  .action-button {
    background: var(--primary-400) !important;
    color: #e5e7eb !important;
  }

  .action-button:hover {
    background: var(--primary-500) !important;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--primary-400), var(--primary-300)) !important;
    color: #e5e7eb !important;
  }

  .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-400)) !important;
  }

  .btn-secondary {
    background: #1f2937 !important;
    color: #93c5fd !important;
    border-color: #374151 !important;
  }

  .btn-secondary:hover {
    background: #374151 !important;
    border-color: #93c5fd !important;
  }

  .btn-outline {
    background: transparent !important;
    color: #93c5fd !important;
    border-color: var(--primary-300) !important;
  }

  .btn-outline:hover {
    background: var(--primary-400) !important;
    color: #e5e7eb !important;
  }

  .form-input {
    background: #1f2937 !important;
    color: #e5e7eb !important;
    border-color: #374151 !important;
  }

  .form-input:focus {
    border-color: var(--primary-300) !important;
    box-shadow: 
      0 0 0 3px rgba(147, 197, 253, 0.1) !important,
      0 2px 8px rgba(147, 197, 253, 0.08) !important;
  }

  .form-input::placeholder {
    color: #9ca3af !important;
  }

  blockquote {
    border-left-color: var(--primary-300) !important;
    color: #d1d5db !important;
  }
}

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

@media (max-width: 640px) {
  .site-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "main-content";
    padding: 1rem;
  }
  
  .primary-sidebar, .secondary-sidebar {
    display: none;
  }
}

@media (min-width: 768px) {
  .site-layout {
    padding: 1.5rem 1rem;
  }
}

@media (min-width: 1024px) {
  .site-layout {
    grid-template-columns: var(--sidebar-width) 1fr;
    grid-template-areas: "primary-sidebar main-content";
  }
  
  .secondary-sidebar {
    display: none;
  }
}

@media (min-width: 1280px) {
  .site-layout {
    grid-template-columns: var(--sidebar-width) 1fr var(--toc-width);
    grid-template-areas: "primary-sidebar main-content secondary-sidebar";
  }
}

@media (min-width: 1536px) {
  .site-layout {
    max-width: 1600px;
    padding: 2rem 1.5rem;
  }
}

/* ======================= */
/* UTILITY CLASSES         */
/* ======================= */

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 12px; }
.shadow { box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08); }
.shadow-lg { box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15); }

.text-primary { color: var(--primary-600); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }

.bg-primary { background-color: var(--primary-500); }
.bg-light { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-primary); }

.border { border: 1px solid var(--border-primary); }
.border-primary { border: 1px solid var(--primary-200); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }

.hidden { display: none; }
.block { display: block; }

/* ======================= */
/* ENHANCED ACCESSIBILITY  */
/* ======================= */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  :root {
    --text-primary: #000000;
    --text-secondary: #333333;
    --border-primary: #666666;
  }
}
