body {
  font-family: "Inter", sans-serif;
}
.loader {
  border-top-color: #3498db;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.report-container h3,
.legal-view h2,
#suggestion-modal h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #93c5fd;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #4b5563;
}
.report-container ul,
.legal-view ul {
  list-style-type: disc;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}
.report-container li,
.legal-view li {
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.report-container p,
.legal-view p {
  line-height: 1.6;
  margin-top: 0.75rem;
  color: #d1d5db;
}
.StripeElement {
  background-color: #374151;
  padding: 10px 12px;
  border-radius: 0.375rem;
  border: 1px solid #4b5563;
  color: #f3f4f6;
}
.StripeElement--focus {
  box-shadow: 0 0 0 2px #3b82f6;
  border-color: #3b82f6;
}
