.nafeza-discount-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.nafeza-discount-table th,
.nafeza-discount-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

.nafeza-discount-table th {
  background-color: #f2f2f2;
}
#nafeza-discount-toast-container {
  width: 320px;
  max-width: 100%;
}
.nafeza-discount-toast {
  visibility: hidden;
  background-color: #333;
  color: #ec6717;
  text-align: center;
  border-radius: 5px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 17px;
  width: 320px;
  max-width: 100%;
  box-shadow: 0px 0px 5px 1px #ec6717;
}

.nafeza-discount-toast.show {
  visibility: visible;
  animation: nafeza-discount-toast-fadein 0.5s,
    nafeza-discount-toast-fadeout 0.5s 2.5s;
}

@keyframes nafeza-discount-toast-fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes nafeza-discount-toast-fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
