/* Woo Toast Notices - isolated styles */
.wctn-toast-container {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  z-index: 999999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  pointer-events: none !important;
}

.wctn-toast {
  box-sizing: border-box !important;
  display: flex !important;
  align-items: flex-start !important;
  padding: 12px 16px !important;
  border-radius: 6px !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15) !important;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .25s ease, transform .25s ease !important;
  min-width: 260px !important;
  max-width: 380px !important;
  color: #1f2937 !important;
  -webkit-text-fill-color: #1f2937 !important;
  font: inherit !important;
  line-height: 1.45 !important;
  pointer-events: auto !important;
}

/* Lock text color against theme / dark-mode overrides */
.wctn-toast,
.wctn-toast * {
  color: #1f2937 !important;
  -webkit-text-fill-color: #1f2937 !important;
  text-shadow: none !important;
}

.wctn-toast a,
.wctn-toast a:hover,
.wctn-toast a:focus,
.wctn-toast a:active,
.wctn-toast a:visited {
  color: #1f2937 !important;
  -webkit-text-fill-color: #1f2937 !important;
  text-decoration-color: currentColor !important;
}

.wctn-toast.wctn-show {
  opacity: 1;
  transform: translateY(0);
}

.wctn-toast-success {
  background: #f0fff4 !important;
  border-left: 4px solid #38a169 !important;
}

.wctn-toast-error {
  background: #fff5f5 !important;
  border-left: 4px solid #e53e3e !important;
}

.wctn-toast-info {
  background: #ebf8ff !important;
  border-left: 4px solid #3182ce !important;
}

.wctn-toast-icon {
  flex: 0 0 auto !important;
  margin-right: 8px !important;
  font-size: 16px !important;
  line-height: 1.45 !important;
}

.wctn-toast-msg {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  color: #1f2937 !important;
  -webkit-text-fill-color: #1f2937 !important;
}
