body {
  font-family: Arial, sans-serif;
  margin: 30px;
  background-color: #f5f5f5;
}

h1 {
  text-align: center;
}

table {
  border-collapse: collapse;
  width: auto; /* Let the table fit its content */
  max-width: 100%;
  margin: auto;
  background-color: white;
}

th, td {
  border: 1px solid #ccc;
  padding: 8px 16px;
  text-align: left;
  white-space: nowrap; /* Prevent wrapping */
}

th {
  background-color: #007bff;
  color: white;
  cursor: pointer;
}

tr:hover {
  background-color: #e9f7ff;
}

#table-container {
  overflow-x: auto;  /* Enable horizontal scroll if needed */
  padding: 0 10px;
}

#grids-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px;
}

.grid-box {
  min-width: 300px;
  max-width: 100%;
}

td.count-col, th.count-col {
  text-align: center;
}
