/* InlineToolbar Styles */
.toolbar {
  position: fixed;
  background: #1f2937;
  border-radius: 10px;
  padding: 6px;
  display: flex;
  gap: 2px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 4px 8px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 999999;
  backdrop-filter: blur(8px);
  pointer-events: auto;
  animation: fadeInScale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toolbarHidden {
  display: none;
}

/* Animation Keyframes */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.8) translateY(15px);
    filter: blur(4px);
  }
  60% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.05) translateY(-2px);
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(0);
    filter: blur(0);
  }
}

/* Separator Style */
.separator {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 4px;
}