.video-container {
  position: relative;
  background: #1f2937;
  border-radius: 8px;
  overflow: hidden;
}
.video-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px;
  border-radius: 4px;
}
.chat-messages {
  max-height: 300px;
  overflow-y: auto;
}
.message {
  margin-bottom: 8px;
  padding: 8px;
  border-radius: 8px;
  max-width: 80%;
}
.message.sent {
  background: #3b82f6;
  color: white;
  margin-left: auto;
}
.message.received {
  background: #e5e7eb;
  color: #374151;
}
.connection-info {
  font-family: monospace;
  font-size: 12px;
  background: #f3f4f6;
  padding: 8px;
  border-radius: 4px;
  word-break: break-all;
} 