.toast-container {
  position: fixed;
  left: 50%;
  transform: translateX(-100%);
  bottom: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.toast-contents {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: #ff6f61;
  padding: 1.2rem 2rem;
  border-radius: 9px;
  max-width: 80vw;
}

.toast-container.show {
  opacity: 1;
  transform: translateX(-50%);
}

.toast-message {
  color: #eef1ef;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toast-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
}
