﻿
/* Chat icon */
#chatbot-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #2c682d;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

/* Chat container (hidden by default) */
#chatbot-container {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
    z-index: 10000;
}

#chatbot-header {
    background-color: #2c682d;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-messages {
    height: 400px;
    overflow-y: auto;
    padding: 10px;
}

#chatbot-input-area {
    display: flex;
    border-top: 1px solid #ddd;
}

#chatbot-input {
    flex: 1;
    padding: 10px;
    border: none;
}

#chatbot-send {
    background-color: #2c682d;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

#close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}
