#toast-message {
  position: fixed;
  width: 350px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  top: 60px;
  right: 20px;
  background: #393939;
  color: white;
  padding: 20px 7px;
  border-radius: 10px;
  font-size: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

#toast-message.show {
  opacity: 1;
}

.toast-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

/* OK */
.toast-ok .toast-icon {
  background: #28a745;
}
.toast-ok .toast-icon::before {
  content: "✓";
}

/* ERROR */
.toast-error .toast-icon {
  background: #dc3545;
}
.toast-error .toast-icon::before {
  content: "✕";
}

/* WARNING */
.toast-warning .toast-icon {
  background: #ffc107;
  color: #333;
}
.toast-warning .toast-icon::before {
  content: "⚠";
}

.toast-text {
  line-height: 1.3;
}
