.chatbot-container {
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fff;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    color: black;
}
.chatbot-label{
    color: black
}

.chatbot-log {
    margin-top: 10px;
   /* display: flex;*/
    flex-direction: column-reverse;
}

.chatbot-question {
    background: #eef2f3;
    color: black;
    padding: 8px 12px;
    border-radius: 20px;
    margin-bottom: 5px;
    align-self: flex-start;
}

.chatbot-answer {
    background: #d9f3f5;
    padding: 8px 12px;
    border-radius: 20px;
    margin-bottom: 5px;
    align-self: flex-end;
    color: black;
}

.chatbot-form input[type="text"] {
	width: 98%;
	padding: 8px;
	margin-bottom: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
	color: #000 !important;
}

.chatbot-form button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 5px;
}

.chatbot-form button:hover {
    background: #005f8d;
}

.chatbot-image {
  width: 10%; /* or whatever size you prefer */
  height: auto;
}
#chatbot-placeholder {
	font-size: 12px;
}
#ask, #cleaer {
	font-size:12px;
}
/* Loading Spinner */
.chatbot-loading {
    text-align: center;
    padding: 10px;
    font-weight: bold;
    color: #0073aa;
}
.chatbot-error {
    color: red;
    font-weight: bold;
    margin-top: 10px;
}

.chatbot-spinner-animation {
  display: inline-block;
  animation: blink 2s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.2; }
  100% { opacity: 1; }
}
