/* Save & Sync FAB Button - Shared Styles */
.save-sync-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 180px;
  height: 56px;
  border-radius: 28px;
  background: linear-gradient(135deg, #22c55e, #06d6a0);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
  transition: all 0.2s;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.save-sync-fab:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.6);
}

.save-sync-fab:active {
  transform: scale(0.98);
}

.save-sync-fab .icon {
  font-size: 20px;
}

@media (max-width: 768px) {
  .save-sync-fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 0;
    bottom: 80px;
  }
  
  .save-sync-fab .text {
    display: none;
  }
  
  .save-sync-fab .icon {
    font-size: 24px;
  }
}
