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

.office-status-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.office-status-banner.open {
  background-color: #d1fae5;
  color: #065f46;
  border: 2px solid #10b981;
}

.office-status-banner.closed {
  background-color: #fee2e2;
  color: #991b1b;
  border: 2px solid #ef4444;
}

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

.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;
  }
}