﻿/* Boîte du popup */
.popup_box {
  display: none; 
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  max-width: 420px;
  width: 90%;

  background: #f5f5f5;
  border: 1px solid #999;
  border-radius: 4px;

  padding: 1.2rem 1.5rem;
  box-sizing: border-box;

  z-index: 9999;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

/* Texte interne */
.info_text {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

/* Boutons du popup */
.display_popup,
.popup_cancel,
.popup_close {
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.25rem 0.6rem;
  cursor: pointer;
}

.popup_cancel,
.popup_close {
  margin-top: 0.6rem;
}

/* Bouton X en haut à droite */
.popup_cancel {
  position: absolute;
  top: 0.4rem;
  right: 0.5rem;
  border: none;
  background: transparent;
  font-size: 0.9rem;
}

/* Titre du popup */
.popup_title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: bold;
}

/* Bouton “Fermer” en bas à droite */
.popup_close {
  margin-top: 0.8rem;
  float: right;
}
