/* Prose styling for markdown content */
.prose {
    color: #1f2937;
    max-width: 65ch;
  }
  
  .prose h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .prose h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .prose h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .prose p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
  }
  
  .prose code {
    background-color: #f3f4f6;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
    font-family: 'Courier New', monospace;
  }
  
  .prose pre {
    background-color: #1f2937;
    color: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
  }
  
  .prose pre code {
    background-color: transparent;
    padding: 0;
    color: inherit;
  }
  
  .prose ul, .prose ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
  }
  
  .prose li {
    margin-bottom: 0.5rem;
  }
  
  .prose a {
    color: #2563eb;
    text-decoration: none;
  }

  /* Override prose link color for buttons - more specific selector */
  .prose a.bg-blue-600 {
    color: white !important;
  }

  .prose a.border {
    color: #111827 !important;
  }
  
  .prose a:hover {
    text-decoration: underline;
  }
  
  .prose hr {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 2rem 0;
  }
  
  /* Smooth scroll for anchor links */
  html {
    scroll-behavior: smooth;
  }