body {
  font-family: ui-monospace, monospace;
  background-color: #fafafa;
  margin: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h2 {
  margin-bottom: 0.3rem;
  text-align: center;
  font-size: 2rem;
  color: #333;
}

.description {
  text-align: center;
  max-width: 700px;
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* Scrollable wrapper */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  border-collapse: collapse;
  margin: 0 auto;
  width: 90%;
  max-width: 800px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

thead {
  background-color: #f9f9f9;
}

tbody tr:hover {
  background-color: #f1f1f1;
  transition: background-color 0.2s;
}

@media (max-width: 800px) {
  body {
    padding: 1rem;
  }
}
