/* opening hours css */

.opening-hours-twrap {
  display: flex;
  align-items: center;
}

.indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #a70000; /* Default: closed */
  margin-right: 10px;
}
.indicator.open {
  background-color: #5BD200; /* Open: green */
}

.fvl-d {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
}

.fvl-d div {
  flex: 1;
}

.opening-hours-twrap {
  font-size: 18px;
  font-style: normal;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .opening-hours-twrap {
    padding-top: 20px;
  }
  
}

.opening-hours {
  margin-bottom: 30px;
}

.opening-status-text {
  padding: 5px 10px;
  font-size: 18px;
}

.opening-status-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FF7F00;
  flex-shrink: 0;
}
.status-indicator.open {
  background-color: #5BD200;
}