/* docs-hotfix.css */

/* Ensure full width for content container with max width and padding */
.docs-content {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-family: "Segoe UI", Roboto, sans-serif;
  line-height: 1.7;
  color: #333;
}

/* Header title */
.docs-content header h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #1a1a1a;
  font-weight: 700;
}

/* Section headers */
.docs-content main h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #1e3a8a; /* Indigo-800 */
  border-bottom: 2px solid #e0e7ff;
  padding-bottom: 0.4rem;
}

/* Paragraphs */
.docs-content main p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* Lists */
.docs-content main ul {
  list-style: disc inside;
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.docs-content main ul li {
  margin-bottom: 0.5rem;
}

/* Responsive text */
@media (max-width: 600px) {
  .docs-content {
    padding: 1.5rem 1rem;
  }

  .docs-content header h1 {
    font-size: 2rem;
  }

  .docs-content main h2 {
    font-size: 1.3rem;
  }

  .docs-content main p,
  .docs-content main ul li {
    font-size: 1rem;
  }
}

/* Optional: Fancy bullet icons using Font Awesome */
.docs-content main ul li::marker {
  color: #6366f1; /* Indigo-500 */
}
