
    * {
      font-family: Verdana, sans-serif;
      font-size: 10pt;
      color: gray;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #f8f8f8;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      text-align: center;
    }

    table {
      border: 1px solid gray;
      padding: 20px 40px;
      border-radius: 10px;
      background: white;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    td {
      padding: 15px;
    }

    b {
      font-weight: bold;
      color: #444;
    }

    img {
      width: 64px;
      height: 64px;
      margin-top: 10px;
    }

    footer {
      font-size: 8pt;
      margin-top: 20px;
      color: #777;
    }

    @media (max-width: 600px) {
      table {
        width: 90%;
        padding: 15px;
      }
      img {
        width: 64px;
        height: 64px;
      }
    }
