/* TiMeeting Custom Styles */

/* Speaking indicator */
.participant.speaking {
  outline: 3px solid oklch(var(--su));
  outline-offset: 2px;
}

/* Recording pulse animation */
.recording-dot {
  animation: pulse 1s infinite;
}

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

/* Audio elements hidden */
audio {
  display: none;
}

/* RTL adjustments */
[dir="rtl"] .ml-2 {
  margin-left: 0;
  margin-right: 0.5rem;
}
