.toast {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 500;
  display: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-family: var(--font-henry);
  font-size: 16px;
  line-height: 1.4;
  word-break: break-word;
}

.toast.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.toast.hide {
  opacity: 0;
  transform: translateY(-10px);
}

/* Toast Variants */
.toast.success {
  background-color: #e6f9ed;
  border-left: 6px solid #22c55e;
  color: #166534;
}

.toast.error {
  background-color: #fde8e8;
  border-left: 6px solid #ef4444;
  color: #991b1b;
}

.toast.warning {
  background-color: #fff7e6;
  border-left: 6px solid #f59e0b;
  color: #92400e;
}

.toast.info {
  background-color: #e0f2fe;
  border-left: 6px solid #3b82f6;
  color: #1e3a8a;
}

/* Message span just inherits color */
.toast-message {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  color: inherit;
}
