/* styles.css */

/* General body styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 20px;
  color: #333;
}

/* Heading styles */
h1 {
  font-size: 2.5em;
  color: #222;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.5em;
  margin-top: 1em;
  font-weight: bold;
}

h2 {
  font-size: 2em;
  color: #333;
  margin-top: 1em;
  font-weight: bold;
}

h3 {
  font-size: 1.6em;
  color: #444;
  margin-top: 1em;
  font-weight: bold;
}

/* Paragraph styles */
p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 1em;
}

/* List styles */
ul, ol {
  margin-bottom: 1em;
}

li {
  margin-bottom: 0.5em;
}

/* Link styles */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Callout note styles */
.callout-note {
  border: 1px solid #ccc;
  padding: 10px;
  margin: 10px 0;
  background-color: #f9f9f9;
  border-left: 5px solid #007bff;
}

.callout-note .callout-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #007bff;
}

/* Table styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

th {
  background-color: #f2f2f2;
  font-weight: bold;
}

/* Code block styles */
pre {
  background-color: #f5f5f5;
  padding: 10px;
  border: 1px solid #ddd;
  overflow-x: auto;
}

code {
  font-family: monospace;
  font-size: 1em;
}

/* Blockquote styles */
blockquote {
  border-left: 5px solid #ccc;
  padding-left: 15px;
  font-style: italic;
  margin-bottom: 1em;
}
