/* working_hours.css */
.working-hours-component {
  background-color: #000000; /* Black background */
  color: #ffffff; /* White text */
  padding: 1rem 1.5rem;
  border-left: 5px solid #D4AF37; /* Gold accent line */
  font-family: sans-serif;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.wh-inner-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* The Open/Closed Badge */
.wh-badge {
  background-color: #ffffff; /* Default white for closed/checking */
  color: #000000; /* Black text */
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
}

/* Gold styling applied via JS when the business is open */
.wh-badge.is-open {
  background-color: #D4AF37; /* Gold background */
  color: #000000; /* Black text */
}

/* The Live Clock Numbers */
.wh-time {
  color: #D4AF37; /* Gold text */
  font-family: monospace;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
  .wh-inner-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}