
/* Global Neon Styling */
.md-typeset h1, .md-typeset h2, .md-typeset h3 {
  color: var(--text-color);
  font-weight: 800;
}

.md-typeset h1 {
  background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 2rem;
}

/* Glassmorphism tables */
.md-typeset table:not([class]) {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: table;
  width: 100%;
}

.md-typeset table:not([class]) th {
  background: rgba(0, 242, 255, 0.1);
  color: var(--accent-primary);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.md-typeset table:not([class]) td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

/* Layout adjustments */
[data-md-color-scheme="slate"] body {
  background-color: var(--bg-color);
}
[data-md-color-scheme="slate"] .md-header {
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}
