body {
  background: #f8f9fa;
}

.clickable-row {
  cursor: pointer;
}

.clickable-row:hover {
  background-color: #f0f0f0;
}

.badge-draft { background-color: #6c757d; }
.badge-recording { background-color: #dc3545; }
.badge-processing { background-color: #ffc107; color: #000; }
.badge-ready { background-color: #198754; }
.badge-archived { background-color: #0d6efd; }

.recording-indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: red;
  border-radius: 50%;
  animation: pulse 1s ease-in-out infinite;
  margin-right: 6px;
}

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

.nav-link.active {
  font-weight: 600;
}

#app {
  min-height: 400px;
}

.meeting-audio-player {
  width: 100%;
  margin-bottom: 10px;
}

.transcript-timestamp {
  color: #888;
  font-size: 0.85em;
  font-family: monospace;
  cursor: pointer;
}

.transcript-timestamp:hover {
  color: #0d6efd;
  text-decoration: underline;
}
