body {
            background-color: rgb(226, 231, 235);
            font-family:  Geneva, sans-serif;
            margin: 20px;
            line-height: 1.6;
        }

        h1 {
            color: rgb(22, 60, 109);
            font-family: Helvetica, sans-serif;
        }
        h2 {
            color: rgb(34, 108, 205);
            font-family: Arial, Helvetica, sans-serif;
        }
        h3 {
            color: rgb(34, 108, 205);
            font-size: smaller;
            font-family: Arial, Helvetica, sans-serif;
        }

    .entity-header {
      margin-bottom: 20px;
    }

    .entity-header h1 {
      font-size: 1.5rem;
      margin: 0;
    }

    .entity-header small {
      font-size: 0.9rem;
      color: #666;
    }

    table {
      border-collapse: collapse;
      width: 100%;
      max-width: 100%;
      overflow-x: auto;
      display: block;
    }

    th, td {
      border: 1px solid #ccc;
      padding: 8px;
      text-align: left;
      word-break: break-word;
      font-size: 0.9rem;
    }

    th {
      background-color: #f2f2f2;
      position: sticky;
      top: 0;
    }

    .pagination {
      margin: 20px 0;
      text-align: center;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
    }

    .pagination button {
      padding: 6px 12px;
      font-size: 0.9rem;
      cursor: pointer;
      border: 1px solid #ccc;
      background: #f9f9f9;
      border-radius: 4px;
    }

    .pagination button:hover {
      background: #e9e9e9;
    }

    @media (max-width: 600px) {
      body {
        margin: 10px;
        font-size: 0.9rem;
      }

      .entity-header h1 {
        font-size: 1.2rem;
      }

      th, td {
        padding: 6px;
        font-size: 0.85rem;
      }

      .pagination button {
        padding: 4px 8px;
        font-size: 0.8rem;
      }
    }