/* Overlay d'analyse de la police + marquage des champs pre-remplis */
.pa-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(12, 27, 41, .72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pa-box {
  background: #fff;
  border-radius: 14px;
  padding: 34px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}
.pa-spin {
  width: 42px;
  height: 42px;
  margin: 0 auto 20px;
  border: 3px solid #dce6ef;
  border-top-color: #00a0e1;
  border-radius: 50%;
  animation: pa-turn .9s linear infinite;
}
@keyframes pa-turn { to { transform: rotate(360deg); } }
.pa-title {
  margin: 0 0 8px;
  font-size: 19px;
  color: #14304a;
}
.pa-sub {
  margin: 0 0 22px;
  font-size: 14px;
  color: #5b7085;
}
.pa-skip {
  background: none;
  border: 0;
  color: #7c8ea0;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
}
.pa-skip:hover { color: #14304a; }

.pa-flash {
  margin: 10px 0 0;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  background: #e8f6ee;
  color: #1d6b42;
  border: 1px solid #b9e2cb;
  transition: opacity .6s;
}
.pa-flash--ko {
  background: #fdecea;
  color: #96291c;
  border-color: #f3c2bb;
}

.pa-rempli {
  background: #f2f9fd !important;
  border-color: #9dd4ef !important;
}
