/* Votre style de bouton */
.document-button {
    width: fit-content;
    min-width: 120px;
    height: 40px; /* Réduit un peu la hauteur pour mieux serrer */
    padding: 8px;
    border-radius: 5px;
    border: 2.5px solid #000000;
    box-shadow: 0px 0px 20px -20px;
    cursor: pointer;
    background-color: rgb(0, 0, 0);
    transition: all 0.2s ease-in-out 0ms;
    user-select: none;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center; /* Centrer horizontalement */
    align-items: center; /* Centrer verticalement */
    gap: 5px; /* Réduit l'espace entre l'icône et le texte */
}

/* Effet au survol */
.document-button:hover {
    background-color: #4a02e6;
    box-shadow: 0px 0px 20px -18px;
}

/* Effet au clic */
document-button:active {
    transform: scale(0.95);
}

/* Style pour les icônes */
.document-button .icon {
    width: 16px; /* Réduit la taille de l'icône */
    height: 16px; /* Réduit la taille de l'icône */
    color: #ffffff;
}

/* Style pour le texte */
.document-button .label {
    font-size: 14px;
    color: #ffffff; /* Couleur du texte, changez si besoin */
    letter-spacing: 1px;
}



.md\:w-2\/3 {
    min-height: 100%;
}




/* From Uiverse.io by d4niz */ 
.contactButton {
    background: #7079f0;
    color: white;
    font-family: inherit;
    padding: 0.45em;
    padding-left: 1em;
    font-size: 17px;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em #714da6;
    overflow: hidden;
    position: fixed; /* Fixé à l'écran */
    right: 1em; /* Collé à droite */
    bottom: 1em; /* Positionné en bas */
    height: 2.8em;
    padding-right: 3em;
    z-index: 1000; /* Toujours visible au-dessus des autres éléments */
  }
  
  .iconButton {
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em #7a8cf3;
    right: 0.3em;
    transition: all 0.3s;
  }
  
  .contactButton:hover {
    transform: translate(-0.05em, -0.05em);
    box-shadow: 0.15em 0.15em #5566c2;
  }
  
  .contactButton:active {
    transform: translate(0.05em, 0.05em);
    box-shadow: 0.05em 0.05em #5566c2;
  }
  
  
  
  


