/* ----- Structure ----- */
.popup-overlay-background {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.popup-overlay-body {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0px 0px 30px #000000bf;
  max-height: 90%;
  max-width: 90%;
  overflow: auto;
  position: relative;
}

.popup-overlay-body > nav.nav-boutons-bas {
  padding: 20px;
  position: sticky;
  bottom: 0;
}

/* ----- Message ----- */
.popup-overlay-body div#erreursServeur {
  margin-top: 15px;
}

.popup-overlay-body div:is(#erreursServeur, #erreursClient) .blocMessages {
  margin-right: 10px;
}

.popup-overlay-message {
  color: #48555e;
  font-family: Arial, sans-serif;
  font-size: 1.7em;
  min-width: 300px;
  max-width: 100%;
  background-color: #e6e6e6;
  font-weight: bold;
  text-align: left;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* ----- Message confirmation ----- */
.popup-overlay-body .message-confirmation,
.popup-overlay-body .confirmation-personalisee {
  margin: 0;
  padding: 20px 20px 0;
}

/* ----- confirmation personnalisée ----- */
.popup-overlay-body .confirmation-personalisee {
  padding-top: 0;
}
