/* Charte graphique Biokema - Améliorations */
body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    color: #FFFFFF;
    background: #FF0000;
    animation: themove 20s infinite;
}

@keyframes themove {
    0%   {background-color: #FF0000;}
    20%  {background-color: #00D7FF;}
    40%  {background-color: #00C8AF;}
    70%  {background-color: #7463e0;}
    100% {background-color: #FF0000;}
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

.logo {
    max-width: 200px;
    margin-bottom: 10px;
}

.logo-biokema {
    max-width: 100px;
    margin-bottom: 10px;
}

h1 {
    font-weight: 600;
    color: #FFFFFF;
}

#chatbox {
    border-radius: 10px;
    padding: 10px;
    height: auto;
    overflow-y: auto;
    text-align: left;
}

.user-message {
    background-color: #00D7FF;
    color: white;
    padding: 10px;
    border-radius: 10px;
    max-width: 80%;
    align-self: flex-end;
}

.bot-message {
    background-color: #white;
    color: #black;
    padding: 10px;
    border-radius: 10px;
    max-width: 80%;
    align-self: flex-start;
	}

.bot-message a {
    color: #005eff;
    text-decoration: underline;
	
}

input {
    width: 80%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

button {
    padding: 12px 18px;
    background: #FFFFFF;
    color: grey;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
}

button:hover {
    background: #D70000;
}

.hidden {
    display: none;
}
