/* Theme adaptation for light/dark modes */
.bg-light {
  background-color: var(--dark-lighter, #2a2a2a) !important;
  color: var(--text-primary, #ffffff) !important;
}

.text-muted {
  color: var(--text-secondary, #b0b0b0) !important;
}

/* Typography enhancements */
h1 {
  color: var(--primary, #4a90e2);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h2 {
  color: var(--text-primary, #ffffff);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  border-bottom: 2px solid var(--border-color, rgba(255,255,255,0.1));
  padding-bottom: 0.5rem;
}

h3 {
  color: var(--text-primary, #ffffff);
  margin-top: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

p, li {
  color: var(--text-primary, #ffffff);
  line-height: 1.7;
}

/* Lists styling */
ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Last updated info */
.last-updated {
  background: var(--dark-card, #1a1a1a);
  border-left: 3px solid var(--primary, #4a90e2);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}

/* Important notices */
.notice-box {
  background: var(--dark-card, #1a1a1a);
  border: 1px solid var(--border-color, rgba(255,255,255,0.1));
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 6px;
}

.notice-box strong {
  color: var(--primary, #4a90e2);
}