/* Euroclean — hızlı toast bildirimleri */
:root {
  --en-toast-radius: 12px;
  --en-toast-shadow: 0 10px 30px rgba(1, 41, 112, 0.14);
}

.swal2-container.euro-toast-container {
  padding: 16px;
}

.swal2-popup.euro-toast {
  border-radius: var(--en-toast-radius) !important;
  box-shadow: var(--en-toast-shadow) !important;
  padding: 12px 16px !important;
  font-family: "Nunito", "Open Sans", sans-serif !important;
}

.swal2-popup.euro-toast .swal2-title {
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  color: #012970 !important;
  margin: 0 !important;
}

.swal2-popup.euro-toast .swal2-icon {
  width: 1.6rem !important;
  height: 1.6rem !important;
  margin: 0 10px 0 0 !important;
  border-width: 2px !important;
}

.swal2-popup.euro-toast .swal2-timer-progress-bar {
  height: 3px !important;
}

.swal2-popup.euro-confirm-popup {
  border-radius: 14px !important;
  padding: 22px !important;
}

.swal2-popup.euro-confirm-popup .swal2-title {
  font-size: 1.05rem !important;
  color: #012970 !important;
}

.swal2-popup.euro-confirm-popup .swal2-actions {
  gap: 8px;
}

/* Swal olmadan yerel toast (mobil görevli sayfaları) */
.euro-native-toast-stack {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  left: max(12px, env(safe-area-inset-left));
  z-index: 10050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
}

.euro-native-toast {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: min(100%, 360px);
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(1, 41, 112, 0.14);
  border: 1px solid #e5eaf0;
  font-family: "Nunito", "Open Sans", sans-serif;
  font-size: 0.88rem;
  line-height: 1.35;
  color: #012970;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: auto;
}

.euro-native-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.euro-native-toast-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.euro-native-toast.is-success .euro-native-toast-icon {
  background: #dcfce7;
  color: #166534;
}

.euro-native-toast.is-error .euro-native-toast-icon {
  background: #fee2e2;
  color: #991b1b;
}

.euro-native-toast.is-warning .euro-native-toast-icon {
  background: #fef3c7;
  color: #92400e;
}

.euro-native-toast.is-info .euro-native-toast-icon {
  background: #dbeafe;
  color: #1e40af;
}

.euro-native-toast.is-error {
  border-color: #fecaca;
  background: #fffafa;
}
