/* Protection contre le défilement horizontal */
html, body { 
  overflow-x: hidden; 
  max-width: 100vw; 
}

/* Adaptation au thème du site */
.bg-light {
  background-color: var(--dark-lighter, #2a2a2a) !important;
  color: var(--text-primary, #ffffff) !important;
}

.table {
  color: var(--text-primary, #ffffff);
  border-color: var(--border-color, rgba(255,255,255,0.1));
}

.table-dark {
  --bs-table-bg: var(--dark-card, #1a1a1a);
  --bs-table-striped-bg: var(--dark-lighter, #2a2a2a);
  --bs-table-border-color: var(--border-color, rgba(255,255,255,0.1));
}

.table thead {
  background: var(--dark-card, #1a1a1a);
  border-bottom: 2px solid var(--border-color, rgba(255,255,255,0.1));
}

/* Typographie juridique */
.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary, #ffffff);
  border-bottom: 1px solid var(--border-color, rgba(255,255,255,0.1));
  padding-bottom: 0.5rem;
}

.legal-section h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary, #ffffff);
}

.legal-section p,
.legal-section li {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-light, rgba(255,255,255,0.9));
}

.legal-section ul,
.legal-section ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.last-updated {
  font-style: italic;
  color: var(--text-light, rgba(255,255,255,0.8));
  margin-bottom: 2rem;
}

.contact-info {
  background: var(--dark-card, #1a1a1a);
  padding: 1.5rem;
  border-left: 3px solid var(--primary, #ffd700);
  margin: 2rem 0;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.data-table-wrapper {
  margin: 1.5rem 0;
}