.refrigerator-table {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 19px;
  margin-top: 20px;
  width: 100%;
}

.refrigerator-table h2 {
  background-color: #444;
  color: white;
  padding: 10px;
  margin: 0;
  font-weight: bold;
  text-align: center;
}

.refrigerator-table table {
  width: 100%;
  border-collapse: collapse;
}

.refrigerator-table th {
  background-color: #1267c4;
  color: white;
  padding: 10px;
  text-align: center;
}

.refrigerator-table td {
  padding: 10px;
  text-align: center;
}

.refrigerator-table a {
  color: #1267c4;
  text-decoration: none;
  font-size: 19px; /* This ensures the link text is the correct size */
}

.refrigerator-table a:hover {
  text-decoration: underline;
}

.refrigerator-table tbody tr:nth-child(odd) {
  background-color: #f5f5f5;
}

.refrigerator-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}