/* Base styles for formal document */
.bg-light {
  background-color: var(--card-bg) !important;
  color: var(--text-primary) !important;
}

/* Table styling */
.table {
  color: var(--text-primary);
  border-color: var(--card-border);
}

.table thead {
  background: var(--card-bg);
  border-bottom: 2px solid var(--card-border);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.02);
}

/* List styling */
ul, ol {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Section dividers */
.section-divider {
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

/* Emergency contact box */
.emergency-box {
  border-left: 4px solid var(--accent-coral);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* Emphasis text */
.text-emphasis {
  color: var(--accent-coral);
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}