/* Headings */
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  color: #d1d5db;
  margin-top: 2em;
}

.content h1 {
  font-size: 2.25rem;
  font-weight: bold;
}
video {
  width: 100% !important;
  height: auto !important;
}
.content h2 {
  font-size: 1.875rem;
  font-weight: bold;
}

.content h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

.content h4 {
  font-size: 1.25rem;
  font-weight: bold;
}

.content h5 {
  font-size: 1.125rem;
  font-weight: bold;
}

.content h6 {
  font-size: 1rem;
  font-weight: bold;
}

/* Paragraphs */
.content p {
  font-size: 13px; /* Default to 14px */
  color: #c2c2c2;
  margin-top: 1em;
  margin-bottom: 1em;
}


/* Links */
.content a {
  color: #f87171; /* Lighter red on hover */
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.content a:hover {
  color: #ef4444; /* Red for emphasis */
}

/* Lists */
.content ul,
.content ol {
  color: #9ca3af;
  padding-left: 1.5em;
  margin-top: 1em;
  margin-bottom: 1em;
}

.content li {
  margin-bottom: 0.5em;
}

/* Tables */
.content table {
  width: 100%;
  border-collapse: collapse;
  color: #d1d5db;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.content th,
.content td {
  border: 1px solid #374151;
  padding: 0.75em 1em;
}

.content th {
  background-color: #4b5563;
  font-weight: 700;
  color: #ffffff;
}

.content td {
  background-color: #1f2937;
}

/* Blockquotes */
.content blockquote {
  font-size: 1rem;
  font-style: italic;
  color: #9ca3af;
  padding-left: 1em;
  border-left: 4px solid #374151;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* Code blocks */
.content pre,
.content code {
  font-family: "Courier New", monospace;
  background-color: #374151;
  color: #e5e5e5;
  padding: 0.5em;
  border-radius: 4px;
}

.content pre {
  overflow-x: auto;
  padding: 1em;
}

.content label {
  margin-bottom: 6px;
  color: rgb(228, 228, 228);
  display: none !important;
}
label {
  display: none;
  margin-bottom: 6px;
  color: rgb(228, 228, 228);
}

/* Responsive Typography */
@media (min-width: 640px) {
  .content h1 {
    font-size: 2.5rem;
  }
  .content h2 {
    font-size: 2rem;
  }
  .content h3 {
    font-size: 1.75rem;
  }
  .content h4 {
    font-size: 1.5rem;
  }
  .content h5 {
    font-size: 1.25rem;
  }
  .content h6 {
    font-size: 1.125rem;
  }
  .content p {
    font-size: 1rem;
  }
  label {
    display: block;
  }
}
