  /* =========================================================================
     LAYOUT GÉNÉRAL & CURSEUR PERSONNALISÉ
     ========================================================================= */
     .custom-modal {
        max-width: 75vw;
      }
      
      /* Applique le curseur personnalisé à tous les éléments interactifs */
      * {
        cursor: url('/image/cursor.cur') 16 16, auto !important;
      }
      
      .button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: rgb(20, 20, 20);
        border: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 0px 0px 4px rgba(112, 177, 238, 0.25);
        cursor: pointer;
        transition-duration: 0.3s;
        overflow: hidden;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
      }
      
      .svgIcon {
        width: 12px;
        transition-duration: 0.3s;
      }
      
      .svgIcon path {
        fill: white;
      }
      
      .button:hover {
        width: 140px;
        border-radius: 50px;
        transition-duration: 0.3s;
        background-color: rgba(129, 161, 208, 1);
        align-items: center;
      }
      
      .button:hover .svgIcon {
        transform: translateY(-200%);
        transition-duration: 0.3s;
      }
      
      .button::before {
        position: absolute;
        bottom: -20px;
        content: "Haut de page";
        color: white;
        font-size: 0px;
        transition-duration: 0.3s;
      }
      
      .button:hover::before {
        font-size: 13px;
        opacity: 1;
        bottom: unset;
        transition-duration: 0.3s;
      }