/* Telegram Support Button Styles */
.telegram-support-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FF8C00;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(255, 140, 0, 0.5);
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.telegram-support-btn:hover {
  background-color: #E67E00;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.6);
}

/* Adjusting the scroll-to-top button position on transcript detail page */
.transcript-page-container .scroll-to-top {
  bottom: 90px; /* Moved up to avoid overlap with telegram support button */
}

/* Pulse animation for the glowing effect */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 140, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
  }
} 