/* Chat scroll indicator */
.chat-scroll-indicator {
  position: fixed;
  bottom: 30px;
  right: 100px;
  z-index: 9998;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.chat-scroll-indicator.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

@keyframes pointToChat {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}

.chat-bubble {
  background: linear-gradient(135deg, #ff9800 0%, #ff6d00 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
  white-space: nowrap;
  position: relative;
}

.chat-bubble::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #ff6d00;
}

@media (max-width: 768px) {
  .chat-scroll-indicator {
    bottom: 100px;
    right: 10px;
  }
  
  .chat-bubble {
    padding: 10px 16px;
    font-size: 12px;
  }
}

