/*
 * Import the Roboto Condensed font from Google Fonts.
 */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');

/* Main container styling for the table */
.refrigerator-table {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 19px;
  margin-top: 20px;
  width: 100%;
}

/* Heading styling for each table section. */
.refrigerator-table h2 {
  background-color: #444;
  color: white;
  padding: 10px;
  margin: 0;
  font-weight: bold;
  text-align: center;
}

/* Base table styling. */
.refrigerator-table table {
  width: 100%;
  border-collapse: collapse;
}

/* Table header styling. */
.refrigerator-table th {
  background-color: #1267c4;
  color: white;
  padding: 10px;
  text-align: center;
}

/* Table data cell styling. */
.refrigerator-table td {
  padding: 10px;
  text-align: center;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 19px;
}

/* Styling for model number links. */
.refrigerator-table a {
  color: #1267c4;
  text-decoration: none;
  font-size: 19px;
  font-family: 'Roboto Condensed', sans-serif;
}

/* Hover effect for the model number links. */
.refrigerator-table a:hover {
  text-decoration: underline;
}

/* Styling for alternating rows to improve readability. */
.refrigerator-table tbody tr:nth-child(odd) {
  background-color: #f5f5f5;
}

.refrigerator-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}
