.custom-toast {
  font-family: 'Roboto', sans-serif !important;
  font-size: 14px !important;
  color: #333 !important;
  white-space: normal !important;
  word-break: break-word !important;
  max-width: 420px !important;
  line-height: 1.5 !important;
  padding: 15px 40px 15px 15px !important;
}

.toastify-top {
  top: 30px !important;
}

.toastify-right {
  right: 20px !important;
}

.custom-toast .toastify-avatar {
  width: 24px !important;
  height: 24px !important;
  margin-right: 12px !important;
  flex-shrink: 0 !important;
}

.custom-toast .toast-close {
  color: #999;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  font-size: 20px;
  transition: opacity 0.2s;
  cursor: pointer;
  line-height: 1;
}

.custom-toast .toast-close:hover {
  opacity: 1;
  color: #666;
}

/* Base Toast (Legacy) */
.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  transform: translateX(20px);
  background: #323232;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(0);
}
