/* Custom Fin AI Launcher Button Styles */
[data-sierra-widget] {
  display: none !important;
}

#custom-fin-launcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 12px 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, #56B4E9 0%, #4A9FD8 100%);
  box-shadow: 0 4px 12px rgba(86, 180, 233, 0.4);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 9999;
  transition: all 0.3s ease;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

#custom-fin-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(86, 180, 233, 0.6);
}

#custom-fin-launcher .chat-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

#custom-fin-launcher .chat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#custom-fin-launcher .button-text {
  white-space: nowrap;
}

body.fin-ai-active #custom-fin-launcher {
  display: flex !important;
}

body.sierra-active #custom-fin-launcher {
  display: none !important;
}

