body,
html {
    height: 100%;
    background-color: #1e1e1e;
    color: #fff;
}

/* Chatbot */

#chatBox {
    max-height: 500px;
    overflow-y: auto;
    background-color: #1e1e1e;
    color: #fff;
}

.message {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    align-items: flex-start;
}

.message img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.message .text {
    background-color: #2b2b2b;
    border-radius: 15px;
    color: #ffffff;
    padding: 10px;
    max-width: 80%;
    word-wrap: break-word;
}

.message .text strong {
    color: #ffffff !important; 
}

.user-message .text {
    border-radius: 15px 0 15px 15px;
    align-self: flex-end;
}

.bot-message .text {
    border-radius: 0 15px 15px 15px;
    align-self: flex-start;
}

.btn-primary {
    background-color: #009975;
    border-color: #009975;
    color: #fff;
}

.btn-primary:hover {
    background-color: #007b5e;
    border-color: #007b5e;
}

/* Chatbot SC */

body.chatbot-page,
html.chatbot-page {
    background-color: #1e1e1e;
    height: 100%;
    margin: 0;
    padding: 0;
}

.chatbot-page #chatbot-sc-container {
    background-color: #1e1e1e;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.chatbot-page #chatbot-sc-container #chat {
    background-color: #1e1e1e;
    color: #fff;
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px;
    margin: 0;
    border: 1px solid #444;
    border-radius: 8px;
}

.chatbot-page #chatbot-sc-container .message {
    display: flex;
    margin-bottom: 10px;
    align-items: flex-start;
}

.chatbot-page #chatbot-sc-container .message img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.chatbot-page #chatbot-sc-container .user-message .text {
    background-color: #2b2b2b;
    border-radius: 15px 0 15px 15px;
    color: #ffffff;
    padding: 10px;
    margin-left: 50px;
    max-width: 80%;
}

.chatbot-page #chatbot-sc-container .bot-message .text {
    background-color: #2b2b2b;
    border-radius: 0 15px 15px 15px;
    color: #fff;
    padding: 10px;
    margin-left: 50px;
    max-width: 80%;
}

.chatbot-page #input-container {
    display: flex;
    padding: 10px;
    box-sizing: border-box;
    background-color: #1e1e1e;
    margin: 0;
    border-top: 1px solid #444;
}

.chatbot-page #message-input {
    flex-grow: 1;
    padding: 10px;
    border-radius: 4px;
    height: 60px;
    resize: none;
    margin: 0;
    background-color: #2b2b2b;
    color: #fff;
    border: 1px solid #444;
}

.chatbot-page #send-button {
    margin-left: 10px;
    padding: 10px 20px;
    background-color: #009975;
    border-color: #009975;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.chatbot-page #send-button:hover {
    background-color: #007b5e;
    border-color: #007b5e;
}
