.lustia-available-now-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#lustia-save {
  background: #caa74a;
  color: #000;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.lustia-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);

  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 16px 20px;
  border-radius: 14px;

  font-size: 14px;
  text-align: center;
  max-width: 90%;

  z-index: 99999;

  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.lustia-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
