/* --- Estilos del ChatBot --- */
.neurova-chatbot-container {
    background-color: #2c2c2e;
    padding: 20px;
    width: 100%;
    max-width: 600px;
    margin: auto;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.chat-box {
    background-color: #1c1c1e;
    color: #fff;
    padding: 20px;
    height: 400px;
    overflow-y: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: left;
}

#userInput {
    width: 100%;
    padding: 12px;
    border: 2px solid #444;
    border-radius: 30px;
    font-size: 1rem;
    color: #fff;
    background-color: #333;
}

#userInput::placeholder {
    color: #a0a0a5;
}

#sendBtn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#sendBtn:hover {
    background-color: #005ec4;
}

/* Limitar el tamaño del chat */
#chatBox {
    max-height: 400px;
    overflow-y: auto;
}

/* Estilo para los mensajes del usuario y chatbot */
.chat-box div {
    margin-bottom: 15px;
}

.chat-box .bot-message {
    color: #a0a0a5;
}
