/**
 * 聊天相关样式
 */

/* 视频容器 */
.video-container {
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Telegram 风格消息气泡 */
.telegram-bubble {
  position: relative;
  max-width: 100%;
  word-wrap: break-word;
  display: inline-block;
}

/* 自己的消息气泡（使用项目主色渐变） */
.telegram-bubble-self {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 1px 2px rgba(59, 130, 246, 0.15);
}

/* 他人的消息气泡 */
.telegram-bubble-other {
  background: white;
  color: #1f2937;
  border-radius: 16px 16px 16px 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
}
