body {
  font-family: 'Space Grotesk', Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #232323;
  color: #fff;
}

table {
  width: 50%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  text-align: center;
  padding: 8px;
  border: 1px solid #ccc;
  cursor: pointer;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

th:hover {
  background-color: #555;
}

th {
  background-color: #333;
  font-weight: bold;
}

/* Fixed column widths */
th:nth-child(1), td:nth-child(1) {
  width: 15%; /* Set a fixed width for the first column */
}

th:nth-child(2), td:nth-child(2) {
  width: 15%; /* Set a fixed width for the second column */
}

th:nth-child(3), td:nth-child(3) {
  width: auto; /* Set a fixed width for the third column */
}

/* Responsive layout */
@media (max-width: 600px) {
  table {
    width: 100%;
  }

  thead tr {
    display: none;
  }

  tbody tr {
    display: block;
    border: 1px solid #ccc;
    margin-bottom: 10px;
  }

  td {
    text-align: center;
    padding: 8px;
    border: 1px solid #ccc;
    width: 100%; /* Set a fixed width for each column when in vertical mode */
  }
}
