/* Table text color fix for Jekyll/Prose */
  .prose table {
    color: #111827 !important;
    background-color: white;
    border-collapse: collapse;
    margin: 1.5rem 0;
  }

  .prose th {
    background-color: #f3f4f6;
    color: #111827 !important;
    font-weight: 600;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
  }

  .prose td {
    color: #374151 !important;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
  }

  .prose tbody tr:hover {
    background-color: #f9fafb;
  }

  /* Center images and style captions */
  .prose img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
  }

  .image-caption {
    font-size: 0.80rem;
    color: #6b7280;
    margin-top: 0.5rem;
    text-align: center;
    display: block;
    width: 100%;
  }
  
  /* Style for blockquotes that contain captions */
  .prose blockquote.image-caption {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    margin-right: 0;
  }
  
  /* Make article links blue as requested earlier */
  #article-content a {
    color: #2563eb !important; /* This is a Tailwind blue-600 color */
  }
  
  #article-content a:hover {
    color: #1d4ed8 !important; /* This is a Tailwind blue-700 color */
    text-decoration: underline;
  }