.custom_toast {
  position: fixed;
  top: 20px; /* 设置距离页面顶部的距离 */
  left: 50%;
  transform: translateX(-50%); /* 将 toast 居中 */
  color: rgba(0, 0, 0, 0.8); /* 白色文字 */
  padding: 12px 20px;
  /* border-radius: 5px;  */
  font-size: 14px;
  z-index: 9999; /* 确保显示在顶部 */
  opacity: 0;
  animation: fadeIn 0.5s forwards, fadeOut 0.5s 2.5s forwards; /* 进入和消失的动画 */
  display: flex;
  align-items: center;
  border-radius: 5px;
  gap: 10px;
  min-width: 50px;
}

  .custom_toast .custom_toast_icon {
    display: flex;
    justify-content: center;
  }

.custom_toast svg {
  width: 20px;
  font-size: 18px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.product-form form {
    display: flex;
    flex-direction: column;
    gap: var(--genstore-spacing-gap-400);
  }
