/* Toasts de feedback (esquina inferior derecha). */
.app-toast-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.app-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  max-width: 360px;
  padding: 12px 14px;
  border-radius: var(--theme-radius-lg, 6px);
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-card-border);
  border-left-width: 4px;
  box-shadow: 0 10px 25px rgba(42, 48, 66, 0.14);
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-heading);
  cursor: pointer;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.app-toast--visible {
  opacity: 1;
  transform: translateY(0);
}

.app-toast__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex: 0 0 auto;
  color: #ffffff;
}

.app-toast__message {
  line-height: 1.3;
}

.app-toast--success {
  border-left-color: #34c38f;
}

.app-toast--success .app-toast__icon {
  background: #34c38f;
}

.app-toast--error {
  border-left-color: var(--sandos-accent);
}

.app-toast--error .app-toast__icon {
  background: var(--sandos-accent);
}

.app-toast--info {
  border-left-color: #556ee6;
}

.app-toast--info .app-toast__icon {
  background: #556ee6;
}
