
.table-container {
  overflow-x: auto;
}
.nutrition-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  background-color: #fff;
}
.nutrition-table th, .nutrition-table td {
  border: 1px solid #ccc;
  padding: 0.5rem;
  text-align: center;
  white-space: nowrap;
}
.nutrition-table th {
  background-color: #e0f0ff;
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 2;
}
.nutrition-table td:first-child, .nutrition-table th:first-child {
  background-color: #f1f1f1;
  position: sticky;
  left: 0;
  z-index: 1;
  text-align: left;
}
.nutrition-table tr:nth-child(even) td {
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  .nutrition-table th, .nutrition-table td {
    font-size: 0.85rem;
    padding: 0.4rem;
  }
}
