body {
  background: white;
}

.template-table-wrapper {
  margin: 24px auto 0 auto;
  max-width: 90%;
}

/* Pagination styling */
  .pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .pagination button {
    padding: 6px 10px;
    border: 1px solid #1e88e5;
    background: #fff;
    color: #1e88e5;
    cursor: pointer;
    border-radius: 4px;
    min-width: 32px;
  }

  .pagination button.active {
    background: #1e88e5;
    color: #fff;
    cursor: default;
  }

  .pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
