/* chatbot.css */

.chatbot {
    display: none; /* mantener oculto por defecto */
    flex-direction: column; /* ya estaba correcto */
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 250px;
    background-color: #1e1e1e;
    color: #f1f1f1;
    border: 1px solid #d4af37;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    z-index: 9999;
}


.chat-header {
    background-color: #d4af37;
    color: #0e0e0e;
    font-weight: bold;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.chat-body {
    padding: 10px;
}

.chat-body p {
    margin-bottom: 10px;
}

.chat-body button {
    background-color: #d4af37;
    color: #0e0e0e;
    border: none;
    padding: 6px 10px;
    margin: 4px 0;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
}

.chat-body button:hover {
    background-color: #f1c40f;
}

.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #d4af37;
    color: #0e0e0e;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    padding: 10px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
}
