body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    font-size: 1rem;
    background-color: #fdfdfd;
    color: #111;
    padding: 0 1rem;
  }
  
  @media (min-width: 801px) {
    main, :root {
      margin-left: auto;
      margin-right: auto;
      max-width: 50rem;
      padding: 2rem 1.2rem;
      padding-top: 0;
    }
  }
  
  img, video {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem 0;
  }
  
  a {
    color: #0057ae;
    text-decoration: underline;
  }
  a:hover {
    text-decoration: none;
  }
  
  .comment {
    font-size: 0.875rem;
    color: #666;
  }
  
  img.emoji {
    height: 1.2em;
    width: 1.2em;
    vertical-align: -0.1em;
    margin: 0 0.05em 0 0.1em;
  }
  
  abbr {
    text-decoration: none;
  }
  
  #button img {
    width: 300px;
    margin-top: 25px;
  }
  
  .milkdown .editor, milkdown-code-block {
    background-color: #fdfdfd;
    padding: 1rem;
    border-radius: 0.5rem;
  }
  
  @media (prefers-color-scheme: dark) {
    body {
      background-color: #121212 !important;
      color: #e0e0e0;
    }
    a,
    a:visited {
      color: #9dcaff;
    }
    a:hover {
      color: #b3d6ff;
    }
  
    .milkdown .editor , milkdown-code-block {
      background-color: #1e1e1e;
      border: 1px solid #333;
      margin: 0;
      padding: 0;
    }
    .milkdown .ProseMirror {
        padding: 1rem !important;
      }
    .comment {
      color: #aaa;
    }
  }
  footer {

    border-top: 1px solid #e0e0e0;
  }


  table {
    width: 100%;
    border-collapse: collapse; /* Remove default spacing between cells */
  }
  
  thead th {
    text-align: left; /* Align header text to the left */
    padding-bottom: 8px; /* Add some space below header */
    border-bottom: 1px solid #ccc; /* Subtle bottom border for header */
  }
  
  tbody td {
    padding: 8px 0; /* Vertical padding for cells, remove horizontal */
    font-size: 0.9em; /* Slightly smaller font for content */
  }
  
  tbody tr:not(:last-child) {
    border-bottom: 1px solid #eee; /* Very light separator between rows */
  }
  
  tbody tr:hover {
    background-color: #f9f9f9; /* Optional: subtle hover effect */
  }
  
  td:last-child {
    text-align: right; /* Align actions to the right */
  }
  
  .actions a {
    margin-left: 8px;
    text-decoration: none;
    color: #007bff; /* Example link color */
    font-size: 0.85em;
  }
  
  .actions a:hover {
    text-decoration: underline;
  }

  header {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
  }

  nav a {
    text-decoration: none;
    margin-right: 1em;
  }
  
  nav a:hover {
    text-decoration: underline;
  }