/* Office Hours Widget Styles */
.office-hours-widget {
  margin-top: 20px;
}

/* Office Hours status banner */
.office-status-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 6px;
  transition: all 0.3s ease;
}

.office-status-banner .bi-circle-fill {
  font-size: 0.65rem;
}

.office-status-banner.open {
  background-color: rgba(6, 95, 70, 0.12);
  border: 1.5px solid #10b981;
  color: #065f46;
}

.office-status-banner.closed {
  background-color: rgba(153, 27, 27, 0.1);
  border: 1.5px solid #ef4444;
  color: #7f1d1d;
}

.office-status-banner span {
  color: inherit !important;
}

.office-status-banner.open .bi-circle-fill {
  color: #10b981;
  animation: pulse 2s ease-in-out infinite;
}

.office-status-banner.closed .bi-circle-fill {
  color: #ef4444;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}