/* Text Grabber Highlight */
.kumaflow-grab-highlight {
  outline: 1px solid #eecf34 !important;
  padding: 0px;
  border-radius: 2px;
  cursor: copy !important;
  background-color: rgba(238, 207, 52, 0.2) !important;
  transition: all 0.1s ease;
  z-index: 999999 !important;
}

/* Toast Notification */
.kumaflow-grab-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #2d2d2d;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000000;
  animation: kumaflowToastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes kumaflowToastIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
