/* Dark theme adaptation */
.bg-light {
  background-color: var(--dark-lighter) !important;
  color: var(--text-primary) !important;
}

.table {
  color: var(--text-primary);
  border-color: var(--border-color);
}

body {
  color: var(--text-primary);
}

h1, h2, h3, h4 {
  color: var(--text-primary);
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
}

h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

p {
  line-height: 1.8;
  color: var(--text-secondary);
}

ul, ol {
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

.alert-box {
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent);
  background-color: var(--dark-card);
  border-radius: 4px;
}

.alert-box p {
  margin-bottom: 0;
  color: var(--text-primary);
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

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

a:hover {
  text-decoration: underline;
}