﻿.NewPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 9999;
  backdrop-filter: blur(2px);
}

.NewPopup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 10px;
  width: 90%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 0 3px #806BDB inset, 0 0 9px #806BDB;
  text-align: center;
}

/* Ligne du haut */
.NewPopup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.NewPopup-title {
  font-size: 1em;
  font-weight: bold;
}
.NewPopup-title span{
  font-size: 1em;
  font-weight: normal;
}

.NewPopup-close {
  cursor: pointer;
}

/* Thème */
.NewPopup-theme {
   color: #000;
  margin-bottom: 10px;
}

/* Icône warning */
.NewPopup-warning-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
}

/* Message d’erreur */
.NewPopup-message {
  font-size: 16px;
  color: orangered;
  margin-bottom: 10px;
}
.NewPopup-message span{
  color: black;
}

/* Code erreur */
.NewPopup-code {
   color: #666;
  font-style: italic;
  margin-bottom: 10px;
}

.NewPopup-warning-line {
  display: flex;
  align-items: center;
  justify-content: center; /* centre l’ensemble horizontalement */
  gap: 10px;
  margin: 10px 0;
}

.NewPopup-warning-icon {
  width: 36px;
  height: 36px;
  margin-right:10px;
}

#PpDialogOk,
#PpDialogConfOk,
#PpDialogConfKo {
  display: none; /* cachés par défaut */
  margin : 5px;
  padding: 5px 10px 5px 10px;
}

.NewPopup-button.cancel {
  background-color: #999;
}
