/* static/css/style.css */

/* You can add any custom CSS here that isn't covered by Tailwind,
   or if you prefer not to use the Tailwind CDN for everything. */

/* Add basic paragraph spacing for elements within .prose containers */
.prose p,
.prose-lg p, /* If you use prose-lg specifically */
.prose-xl p {
  /* If you use prose-xl specifically */
  margin-top: 1.25em; /* Adjust these values as needed */
  margin-bottom: 1.25em; /* Adjust these values as needed */
}

/* Example: Custom styling for blockquotes if not using Tailwind prose */
/*
blockquote {
  border-left: 4px solid #ccc;
  margin-left: 0;
  padding-left: 1rem;
  font-style: italic;
  color: #555;
}
*/

/* Ensure body takes full height for sticky footer if not using Tailwind's flex approach in baseof */
/*
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
}
*/

/* Improve readability of code blocks if not using Hugo's built-in or Tailwind prose */
/*
pre {
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1em;
  overflow-x: auto;
  font-size: 0.9em;
  line-height: 1.4;
}

code {
  font-family: 'Courier New', Courier, monospace;
}

pre code {
  background-color: transparent;
  border: none;
  padding: 0;
}
*/
