/* doc-project | paiement/assets/css/payment-slot-reselection.css | Styles dédiés à la modale de re-sélection de créneau affichée après paiement réussi si le créneau initial n’est plus disponible, réalignés sur le markup réellement rendu par paiement/success.php et versionnés côté inclusion pour éviter les vieux caches navigateur. | Expose: aucun | Dépend de: paiement/success.php, paiement/header.php | Impacte: lisibilité de la modale de replanification, sélection des créneaux compatibles, hiérarchie visuelle du parcours post-paiement et cohérence HTML/CSS du flux de reprise | Tables: aucune */

.aqp-slot-modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(14, 18, 24, 0.55);
}

.aqp-slot-modal__dialog {
  width: min(760px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.aqp-slot-modal__body {
  padding: 1.25rem;
}

.aqp-slot-modal__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.aqp-slot-modal__title {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  font-weight: 800;
}

.aqp-slot-modal__intro {
  margin: 0 0 1rem;
  color: #444;
  line-height: 1.5;
}

.aqp-slot-modal__days {
  display: grid;
  gap: 1rem;
}

.aqp-slot-modal__day {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 0.95rem;
  background: #fafafa;
}

.aqp-slot-modal__day-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
}

.aqp-slot-modal__slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.aqp-slot-modal__slot,
.aqp-slot-modal__slot-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-weight: 700;
  background: #1d7cf2;
  color: #fff;
  cursor: pointer;
}

.aqp-slot-modal__slotLabel {
  display: inline-block;
  min-width: 3.5rem;
  text-align: center;
}

.aqp-slot-modal__slot:hover,
.aqp-slot-modal__slot:focus,
.aqp-slot-modal__slot-btn:hover,
.aqp-slot-modal__slot-btn:focus {
  background: #1567cd;
}

.aqp-slot-modal__footer {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.aqp-slot-modal__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #1d1d1d;
  background: #f0f0f0;
}

.aqp-slot-modal__empty {
  margin: 0;
  color: #5f5f5f;
}