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: #29314E;
}

/* #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;
}
 */ 


#flat-chat {

  width: 80vw;  /* 90% de la largeur de l'écran */
  height: 80vh; /* 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 {
            margin-bottom: 20px; /* Ajoute un espace entre le titre et le bloc */
            text-align: center;
            font-size: 24px;
            font-family: Arial, sans-serif;
            color: white;
            margin-top: 20px;
}

.title img {
            vertical-align: middle;
            height: 80px; /* Taille du logo, ajustez selon vos besoins */
}

.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;
}
