#chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #358c9c;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1001;
}
#chatbot-toggle:hover {
    background-color: red;
}
#chatbot-container {
    position: fixed;
    bottom: 80px;
    right: 30px;
    width: 350px;
    background-color: white;
    border: 2px solid #358c9c;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    z-index: 1000;
}
.chatbot-header {
    background-color: red;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
}
.chatbot-messages {
    padding: 10px;
    height: 300px;
    overflow-y: auto;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.chatbot-message {
    margin: 5px 0;
    padding: 8px;
    border-radius: 5px;
}
.chatbot-user {
    background-color: #e0f7fa;
    align-self: flex-end;
}
.chatbot-bot {
    background-color: #ffcdd2;
    align-self: flex-start;
}
#chatbot-input-container {
    display: flex;
    padding: 10px;
}
.chatbot-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.chatbot-send {
    background-color: #358c9c;
    color: white;
    border: none;
    padding: 8px 15px;
    margin-left: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.chatbot-send:hover {
    background-color: red;
}
