/* Fichier: css/styles.css */

.bizia-chatbot-container {
    background-color: #2b2b2b;
    border: 1px solid #222;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    padding: 15px;
    color: #f1f1f1;
}

.bizia-chatbot-history {
    background-color: #222;
    border-radius: 5px;
    max-height: 300px;
    overflow-y: auto;
    padding: 15px;
    margin-bottom: 15px;
}

.bizia-chatbot-history p {
    margin: 0 0 15px;
}

.bizia-chatbot-history strong {
    color: #888888;
}

.bizia-chatbot-form {
    display: flex;
    align-items: center;
}

.bizia-chatbot-form label {
    margin-right: 10px;
}

.bizia-chatbot-form input[type="text"] {
    flex-grow: 1;
    margin-right: 10px;
    background-color: #222;
    border: 1px solid #888888;
    border-radius: 5px;
    color: #f1f1f1;
    padding: 5px;
}

.bizia-chatbot-form button {
    background-image: linear-gradient(144deg, #0b7394, #109dca);
    border: none;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    padding: 5px 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.bizia-chatbot-form button:hover {
    background-image: linear-gradient(144deg, #109dca, #0b7394);
}
