.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
}

.toast {
  background: var(--red-300);
  color: var(--red-500);
  border: 2px solid var(--red-400);
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto;
  height: auto;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  position: relative;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-icon {
  width: 24px;
  height: 24px;
}

.toast-close {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--grey-300);
  opacity: 0.8;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 10px;
  color: inherit;
  cursor: pointer;
  margin-left: 10px;
}
.toast-close img {
  width: 10px;
  height: 10px;
}
