/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

body p {
  font-size: 1.2rem;
  }
  

	

/* Fuerza que el contenedor de Cusdis tenga altura visible */
 div cusdis_thread {
  display: block; /* asegurar que sea un bloque */
  min-height: 500px; /* altura mínima para que se vea el chat */
  width: 100%; /* ocupa todo el ancho */
}