html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Positionne les éléments depuis le haut */
  align-items: center;
  background-color: #f0f0f0;
}

/* #flat-chat {
    width: 80%;
    height: 80%;
    background-color: #ffffff; 
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    display: flex;
    justify-content: center;
    align-items: center;
}
 */ 
    #confetti-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 9999; /* Plus haut que le chat */
      pointer-events: none; /* Permet de cliquer à travers */
    }

#flat-chat {

  width: 95vw;  /* 90% de la largeur de l'écran */
  height: 95vh; /* 90% de la hauteur de l'écran */
  margin-top: 10px; /* Ajuste cet espace en fonction de la hauteur du logo/titre */
  margin-bottom: 15px;
  box-sizing: border-box;
  position: relative; /* Relative pour qu'il reste en flux normal sous les autres éléments */
  display: block;
}

@media only screen and (max-width: 768px) {
  #flat-chat {
    display: none; /* Cacher la div flat-chat sur mobile */
  }
}

.title {
            text-align: center;
            font-size: 24px;
            font-family: Arial, sans-serif;
            color: white;
}

.title img {
            vertical-align: middle;
    height: 180px;
}

.c-fbwYwp {
    padding: 11px 16px 10px;
    max-width: 256px;
    color: rgb(255 255 255);
    box-shadow: var(--shadows-surfaceZ1Light);
    border-radius: var(--radii-2);
    background-color: #cc1818;
    font-family: var(--fonts-default);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
