/* release-notes.css */

.release-notes {
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
  padding: 0 1rem 1rem 1rem;
  max-width: 800px;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Headings */
.release-notes h1,
.release-notes h2,
.release-notes h3 {
  font-weight: bold;
  margin-top: 1em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #e1e4e8;
  padding-bottom: 0.3em;
}

.release-notes h1 {
  font-size: 2rem;
}
.release-notes h2 {
  font-size: 1.5rem;
}
.release-notes h3 {
  font-size: 1.2rem;
}

/* Lists */
.release-notes ul,
.release-notes ol {
  margin-left: 2em;
  margin-bottom: 1em;
}

.release-notes ul {
  list-style-type: disc;
}

.release-notes ol {
  list-style-type: decimal;
}

.release-notes li {
  margin-bottom: 0.5em;
}

/* Tables */
.release-notes table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
}

.release-notes th,
.release-notes td {
  border: 1px solid #dfe2e5;
  padding: 0.75em 1em;
  text-align: left;
}

.release-notes thead {
  background-color: #f6f8fa;
  font-weight: bold;
}

/* Inline Code */
.release-notes code {
  background-color: #f6f8fa;
  padding: 2px 6px;
  font-family: monospace;
  border-radius: 4px;
  font-size: 0.95em;
}

/* Code Blocks */
.release-notes pre {
  background-color: #f6f8fa;
  padding: 1em;
  overflow-x: auto;
  border-radius: 6px;
  font-family: monospace;
  margin-bottom: 1.5em;
}

/* Blockquotes */
.release-notes blockquote {
  border-left: 4px solid #dfe2e5;
  padding-left: 1em;
  color: #6a737d;
  margin: 1.5em 0;
}
