/* Base styles */
body {
  background-color: #1a1a1a; /* Very dark grey background */
  color: #e0e0e0;          /* Light grey text for body */
  font-family: 'Source Code Pro', monospace; /* Alternative: 'Fira Code' or a clean sans-serif */
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Header styling */
h1, h2, h3, h4, h5, h6,
.post-title,
.post h1, .post h2, .post h3, .post h4, .post h5, .post h6 {
  color: #f0f0f0 !important;  /* Higher contrast header text */
  font-weight: 600;
  margin-bottom: 0.5em;
}

.post-content h1, .post-content h2, .post-content h3, 
.post-content h4, .post-content h5, .post-content h6 {
  color: #f0f0f0 !important;
} 

h2.post-title a {
  color: #f0f0f0;
}
/* Link styling */
a {
  color: #4a90e2;          /* Blueish links */
  text-decoration: none;
  transition: color 0.3s ease;
}

a[href^="http"]:not([href*="micro.blog"]):hover::after {
  content: " 🔗";
  margin-left: 0.25em;
}
a:hover,
a:focus {
  color: #6cb3f7;          /* Lighter blue on hover */
  text-decoration: underline;
}

/* Container for content */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

/* Additional elements styling */
blockquote {
  border-left: 4px solid #4a90e2;
  margin: 1.5em 0;
  padding-left: 1em;
  color: #ccc;
}

/* Inline code styling - add this to your existing CSS */
code {
  background-color: #2a2a2a !important;
  color: #e0e0e0 !important;
  padding: 0.2em 0.4em !important;
  border-radius: 3px !important;
  font-family: 'Source Code Pro', monospace !important;
}

pre, code {
  background-color: #2a2a2a;
  padding: 0.5em;
  border-radius: 3px;
  font-family: 'Source Code Pro', monospace;
}

/* Make sure it doesn't conflict with code blocks */
pre code {
  background-color: transparent !important;
  padding: 0 !important;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .container {
    padding: 1rem;
  }
}
