@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');

.refrigerator-table {
  width: 100%;
  font-family: 'Roboto Condensed', sans-serif;
  margin: 20px auto;
  border-collapse: collapse;
}

.refrigerator-table h2.section-title {
  margin-top: 40px;
  font-size: 20px;
  background-color: #0073aa;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  font-family: 'Roboto Condensed', sans-serif;
}

.refrigerator-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.refrigerator-table th,
.refrigerator-table td {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  text-align: left;
  font-size: 16px;
  font-family: 'Roboto Condensed', sans-serif;
}

.refrigerator-table th {
  background-color: #1565c0;
  color: #ffffff;
  font-weight: bold;
}

.refrigerator-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.refrigerator-table tbody tr:hover {
  background-color: #e3f2fd;
}

.refrigerator-table a {
  color: #0d47a1;
  text-decoration: none;
  font-family: 'Roboto Condensed', sans-serif;
}

.refrigerator-table a:hover {
  text-decoration: underline;
}
