#chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000; /* Cambia el color según tu necesidad */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff; /* Cambia el color según tu necesidad */
    z-index: 9999; /* Añade un z-index alto */
  }
  
  /* Estilo para el modal de chat */
  #chat-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    height: 400px;
    background: #fff; /* Cambia el color según tu necesidad */
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    z-index: 9999; /* Añade un z-index alto */
  }

/* Estilo para la cabecera del chat */
#chat-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    z-index: 9999; /* Añade un z-index alto */
}

/* Estilo para los mensajes del chat */
#chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    z-index: 9999; /* Añade un z-index alto */
}

/* Estilo para el campo de entrada del chat */
#chat-input {
    margin-top: 10px;
    z-index: 9999; /* Añade un z-index alto */
}