#business-hours-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: #fff;
  text-align: center;
  direction: rtl;
  font-family: "Cairo", sans-serif;
}

#business-hours-box {
  position: relative;
  max-width: 85%;
  background-color: var(--accentYellow);
  padding: 25px 20px;
  border-radius: 12px;
  color: var(--dark1);
}

#business-hours-close {
  position: absolute;
  top: 0px;
  left: 8px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

#business-hours-text {
  font-size: 18px;
  margin: 12px auto;
  line-height: 1.6;
}

#business-hours-note {
  display: block;
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 10px;
}

#business-hours-link {
  display: inline-block;
  padding: 6px 16px;
  /* border: 1px solid #fff; */
  border-radius: 5px;
  color: var(--light1);
  background-color: var(--accentGreen);
  text-decoration: none;
  font-size: 13px;
}

#business-hours-link:hover {
  background: #fff;
  color: #000;
}
