.business-hours-message{
  position: fixed;
  bottom: 20px;
  left: 10px;
  z-index: 9999;
  padding: 10px;
}

.business-hours-message.open a, .business-hours-message.open a:focus,.business-hours-message.open a:hover, .business-hours-message.open a:visited{
  color: green; /* Text color green */
  border: 2px solid green; /* Green border */
  background-color: white; /* White background */
  padding: 7px; /* Optional: space inside the border */
  border-radius: 4px; /* Optional: rounded corners */
}


.business-hours-message.closed a, .business-hours-message.closed a:focus, .business-hours-message.closed a:hover, .business-hours-message.closed a:visited{
  color: red; /* Text color red */
  border: 2px solid red; /* Red border */
  background-color: white; /* White background */
  padding: 7px; /* Optional: space inside the border */
  border-radius: 4px; /* Optional: rounded corners */
}