/* Updated: 2025-08-29 17:38 */
 
/* Lightbox2 captions – desktop default */
    .lb-data .lb-caption {
      font-size: 16px;
      /* desktop size */
      line-height: 1.4;
    }

    /* Lightbox2 captions – mobile override */
    @media (max-width: 1024px) {
      .lb-data .lb-caption {
        font-size: 48px;
      }
    }

    /* Set the max-width and max-height of each picture to 100% of its container */
    img {
      max-width: 100%;
      max-height: 100%;
      display: inline-block;
      margin: 5px;
      vertical-align: top;
    }

    /* Set the width of each picture container to 25% of the page width */
    .picture-container {
      width: 25%;
      display: inline-block;
      box-sizing: border-box;
      padding: 5px;
    }
  
    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      background: #f6f8fa;
      margin: 0;
      padding: 0;
    }

    .container {
      max-width: 900px;
      margin: 2rem auto;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
      padding: 2rem 1.5rem;
    }

    h1,
    h2,
    h3 {
      color: #1976d2;
      margin-top: 1.5em;
      margin-bottom: 0.5em;
    }

    h1 {
      color: #000000;
      font-size: 2.1em;
      margin-top: 0;
    }

    h2 {
      color: #000000;
      font-size: 1.4em;
    }

    h3 {
      font-size: 1.1em;
      color: #333;
    }

    p,
    ul,
    li {
      font-size: 1em;
      color: #222;
      line-height: 1.7;
    }

    a {
      color: #1976d2;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .table-responsive {
      overflow-x: auto;
      margin: 1.5em 0;
    }

    table {
      border-collapse: collapse;
      width: 100%;
      min-width: 600px;
      background: #fafbfc;
      margin-bottom: 1.5em;
    }

    th,
    td {
      padding: 0.6em 0.8em;
      text-align: left;
      border-bottom: 1px solid #e0e0e0;
      font-size: 0.98em;
    }

    th {
      background: #e3eafc;
      color: #1976d2;
      font-weight: 600;
    }

    tr:nth-child(even) td {
      background: #f4f7fb;
    }

    @media (max-width: 700px) {
      .container {
        padding: 1rem 0.3rem;
      }

      table {
        min-width: 400px;
        font-size: 0.95em;
      }

      h1 {
        font-size: 1.3em;
      }

      h2 {
        font-size: 1.1em;
      }
    }
