body {
  display: flex !important;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  text-align: center;
  flex-wrap: wrap;
}

#root {
  width: 90%;
  max-width: 600px;
  box-sizing: border-box;
}

button {
  height: 5rem;
  width: 10rem;
  cursor: pointer;
}

p,
small {
  word-break: break-all;
}

.table-container {
  display: block;
  justify-content: center;
  max-height: 500px;
  overflow-y: auto;
  overflow-x: auto;
  width: 100%;
}

table {
  width: 100%;
}

.table-header-cell {
  border: 1px solid black;
  padding: 6px;
  background-color: white;
}

.table-data-cell {
  border: 1px solid black;
  padding: 6px;
}
