<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#hours-container {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  text-align: left;
  font-weight: bold;
}

#next-hours {
  margin: 0 auto;
}

table {
  border-collapse: collapse;
  margin: 0 auto;
  width: 100%;
  font-weight: normal;
}

table th,
table td {
  border: 1px solid transparent;
  padding: 2px 10px;
  font-size: 1em;
  color: #f8f2e8;
}

table th {
  background-color: #e28647;
  color: #f8f2e8;
  font-weight: bold;
  text-align: center;
}

table td {
  text-align: left;
}

/* Updated style for the "Today" row */
table tr:first-child td {
  font-weight: bold;
  background-color: #e28647;
  color: #21140f; /* Set the font color for the entire "Today" row */
}

@media (min-width: 768px) {
  #hours-container {
    font-size: 14px;
  }

  table th,
  table td {
    font-size: 1em;
  }
}

@media (min-width: 1200px) {
  #hours-container {
    font-size: 16px;
  }

  table th,
  table td {
    font-size: 1em;
  }
}
</pre></body></html>