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

.toaster {
  padding: 12px 20px;
  border-radius: 5px;
  background: white;
  color: #333;
  font-size: 14px;
  min-width: 285px;
  max-width: 350px;
  border-left: 5px solid transparent;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s, transform 0.3s;
}

/* Show animation */
.toaster.show {
  opacity: 1;
  transform: translateX(0);
}

/* Left border colors */
.error {
  border-left-color: #e74c3c;
}
.success {
  border-left-color: #2BDE3F;
}
.info {
  border-left-color: #1D72F3;
}
.warning {
  border-left-color: #FFC007;
}

/* Label for message type */
.toast-label {
  font-weight: bold;
  font-size: 16px;
  display: block;
}

.toaster-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.close-btn img {
  width: 25px;
  cursor: pointer;
}
.toaster-icon {
  margin-right: 15px;
}
.toaster-icon img {
    width: 33px
}
.close-btn:hover {
  color: #000;
}
