/* Floating Quick Add Button */
#floatingQuickAdd {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9333ea 0%, #3b82f6 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
  cursor: pointer;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
}

#floatingQuickAdd:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(147, 51, 234, 0.6);
}

#floatingQuickAdd:active {
  transform: scale(0.95);
}

/* Hide on dashboard (already has Quick Add) */
body.page-dashboard #floatingQuickAdd {
  display: none;
}

/* Mobile specific */
@media (max-width: 768px) {
  #floatingQuickAdd {
    width: 56px;
    height: 56px;
    font-size: 20px;
    bottom: 85px;
    right: 15px;
  }
}

/* Dark Mode */
[data-theme="dark"] #floatingQuickAdd {
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.8);
}
