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

/* Adaptation à la thème du site */
.bg-light {
  background-color: var(--dark-lighter, #2a2a3e) !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, #1a1a2e);
  --bs-table-striped-bg: var(--dark-lighter, #2a2a3e);
  --bs-table-border-color: var(--border-color, rgba(255,255,255,0.1));
}

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

/* Styles juridiques minimalistes */
.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary, #ffffff);
  border-bottom: 2px solid var(--accent, #7c3aed);
  padding-bottom: 0.5rem;
}

.legal-section h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary, #ffffff);
}

.legal-section h4 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-gray, #b0b0c8);
}

.legal-section p {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-gray, #b0b0c8);
}

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

.legal-section li {
  margin-bottom: 0.75rem;
  color: var(--text-gray, #b0b0c8);
}

.legal-section strong {
  color: var(--text-primary, #ffffff);
  font-weight: 600;
}

.last-update {
  font-style: italic;
  color: var(--text-gray, #b0b0c8);
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--dark-card, #1a1a2e);
  border-left: 4px solid var(--accent, #7c3aed);
  border-radius: 4px;
}

.table-responsive {
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .legal-section h2 {
    font-size: 1.5rem;
  }
  
  .legal-section h3 {
    font-size: 1.25rem;
  }
}