/* Webform confirmation modal — style ATB */
  .ui-dialog.ui-widget.ui-widget-content {
    border: none;
    border-radius: 10px;    box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
    overflow: hidden;    padding: 0;
  }

  /* Barre de titre */
  .ui-dialog .ui-dialog-titlebar {
    background: #AC0033;
    border: none;
    border-radius: 0;
    padding: 1rem 1.25rem;
  }

  .ui-dialog .ui-dialog-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
  }

  /* Bouton fermer */
  .ui-dialog .ui-dialog-titlebar-close {
    background: transparent;
    border: none;
    color: #fff;
    opacity: .85;
    transition: opacity .2s;
    right: 17px;
  }
  .ui-dialog .ui-dialog-titlebar-close:hover {
    opacity: 1;
  }
  .ui-dialog .ui-dialog-titlebar-close::before {
    content: "\00d7";          /* croix × */
    font-size: 1.4rem;
    line-height: 1;
    color: #fff;
  }

  /* Contenu */
  .webform-confirmation-modal--content {
    padding: 1.5rem 1.25rem;
    text-align: center;
  }
  .webform-confirmation-modal--content h2 {
    color: #AC0033;
    font-size: 1.25rem;
    margin: 0 0 .5rem;
  }
  .webform-confirmation-modal--content p {
    color: #333;
    margin: 0;
    line-height: 1.5;
  }

  /* Voile derrière la modale */
  .ui-widget-overlay {
    background: rgba(0, 0, 0, .5);
    opacity: 1;
  }