/* Bishmillah */

#chatbot {
    width: 300px;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #333333;
    border-radius: 5px;
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #FFA5AB;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.bot-message {
    background-color: #28AFB0;
    border-radius: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

.user-message {
    background-color: #efde93;
    border-radius: 5px;
    text-align: right;
    padding-left: 5px;
    padding-right: 5px;
}

#chatbot.visible {
    display: block;
    transform: translateY(0);
}

#chatIcon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28AFB0;
    color: #FFA5AB;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 10px rgba(0, 0.1, 0, 0.1);
}

#chatWindow {
    display: flex;
    flex-direction: column;
    height: 300px;
}

#chatContent {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

#chatInput {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    border-width: 1px;
}


#sendButton {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 0px 0px 0px 10px;
    background-color: #28AFB0;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#sendButton:hover {
    background-color: #efde93;
}

/* Blush Roze: #FFA5AB
Napels Yellow: #efde93
Verdigris: #28AFB0
Koolstof Zwart: #333333
Donker Zwart: #1C1C1C

Elhamdulillah */