/* Default Toast Styles (for Desktop) */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgb(84, 217, 84);
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  gap: 10px;
  font-size: 16px;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s, transform 0.3s;
  max-width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.toast-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 15px;
}

.toast p {
  color: white;
  margin: 0px;
  font-size: 17px;
}

/* Show toast */
.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast a {
  height: 46px;
  width: 46px;
  line-height: 46px;
  text-align: center;
  border-radius: 100%;
  color: white;
  border: 1px solid white;
}

/* Mobile Responsive - Full Width with Padding */
@media (max-width: 768px) {
  .toast {
    /* width: calc(100% - 40px); */
    /* max-width: none; */
    left: 20px;
    right: 20px;
    transform: translateY(-100%);
    margin: 0px auto;
  }

  .toast p {
    font-size: 15px;
  }

  .toast.show {
    transform: translateY(0);
  }
}
