/* Posiciona el saludo inicial */
#chatIcon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: rgb(10,93,102);
     box-shadow:inset 0 -3em 3em rgba(0, 0, 0, 0.1), 0 0 0 2px rgb(255, 255, 255), 0.3em 0.3em 1em rgba(10,93,102.3);  border-radius: 15px;
    color: white;
    padding: 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
}

/* Oculta el chat expandido al iniciar */
#chatBox {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 300px;
    height: 400px;
    background-color: #fff;
    box-shadow:inset 0 -3em 3em rgba(0, 0, 0, 0.1), 0 0 0 2px rgb(255, 255, 255), 0.3em 0.3em 1em rgba(10,93,102.3);  border-radius: 15px;
    border-radius: 10px;
    display: none; /* Se mostrará al hacer clic */
    flex-direction: column;
}

/* Estilos del encabezado del chat */
#chatHeader {
    background-color: rgb(10,93,102);
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Estilos para el contenido del chat */
#chatContent {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
}

#userInput {
    width: calc(100% - 60px);
    padding: 10px;
    border: none;
    border-top: 1px solid #ccc;
}

.button {
    background-color: rgb(10,93,102);
    color: white;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    width: 45%;
    float: left;
}

#cancelar{
    background-color: rgb(220, 118, 51);
    color: white;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}