/*
  Targets the existing Save button used by the memory table UI.
  Goal:
  1) Center align within its container
  2) Black background + white text
  3) Ensure it doesn't float/fix to corners
*/

#save-all-memories{
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;

  /* Make it center within the container */
  display: block !important;
  width: fit-content !important;
  margin: 22px auto 10px !important;

  /* Visual style */
  background: #000 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 12px 20px !important;
  font-size: 16px !important;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 1000;
}

#save-all-memories:hover{
  filter: brightness(0.9);
}

#save-all-memories:focus{
  outline: 2px solid rgba(0,0,0,0.35);
  outline-offset: 2px;
}
