/* ------------------ CHATBOT ----------------- */
.chatbot-container {
    width: 350px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    max-height: fit-content;
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    border-radius: 15px;
}

.chatbot-header {
    background: #009674 ; /*#63cb5f*/
    color: #fff;
    padding: 10px;
    text-align: center;
}

.chatbot-mensajes {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background-color: white;
}

.mensaje {
    padding: 8px;
    margin-bottom: 8px;
    border-radius: 5px;
    position: relative;
    max-width: 70%;
}

.mensaje::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px;
    border-color: transparent transparent transparent transparent;
}

.entrante {
    background-color: #f2f2f2;
}

.entrante::before {
    left: -16px;
    border-right-color: #f2f2f2;
}

.saliente {
    background-color: #009674;
    color: #fff;
    align-self: self-end;
}

.saliente::before {
    right: -16px;
    border-left-color: #009674;
}

.chatbot-input {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: #fff ; /*#63cb5f*/
}

.chatbot-input button {
    width: 100%;
}

input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.option {
    background-color: #63cb5f;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

button {
    background-color: #63cb5f;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}