

/*Opening hours -  the old version*/
.openHours {
  text-align: center;
  margin: 20px auto;
  width: fit-content;
}

.opening-hours {
  border-collapse: collapse;
  margin-top: 10px;
  font-family: 'Merienda', cursive;
}

.opening-hours th, .opening-hours td {
  border: 2px solid #be701d;
  padding: 10px 15px;
  text-align: center;
  color: #8a4e0f;
}

.opening-hours th {
  background-color: #dfa866;;
  font-weight: bold;
}

.opening-hours tr:nth-child(even) {
  background-color: #f9f9f9;
}

.opening-hours tr:hover {
  background-color: #e6e6e6;
}

