#chatbot-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    background-color: #E53337;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

#chatbot-icon:hover {
    background-color: #68A012;
}

#chatbot-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
    width: 300px;
    max-height: 80vh;
    height: auto;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
}

.message {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
}

.message-container {
    padding: 0px 10px;
    word-wrap: break-word;
}

.message.sent {
    background-color: #c2f0c2;
    text-align: right;
}

.message.received {
    background-color: #e0e0e0;
    text-align: left;
}

.option {
    padding: 10px;
    margin-bottom: 5px;
    background-color: #68A012;
    border-radius: 5px;
    cursor: pointer;
    border-color: white !important;
    color: white;
}

.option:hover {
    background-color: #E53337;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #555;
}

button,
.button {
    margin: 5px;
    background-color: #E53337;
    color: white;
    text-decoration: none;
}

button:hover,
.button:hover {
    background-color: #68A012;
}

#chat-container-wrapper {
    position: relative;
    margin: 5px 0;
}

#chat-header {
    position: sticky;
    top: 0;
    background-color: #fff;
    padding: 10px;
    z-index: 1000;
     display: flex;
    /*justify-content: center;*/
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

#profile-image img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    /*background:red;*/
    object-fit:cover;
    box-shadow:0 2px 4px 1px rgba(0, 0, 0, 0.1);
}

#profile-name {
    font-weight: bold;
    color: #68A012;
    margin-bottom:5px;
}

#chat-container {
    padding: 10px;
}

.msgcont {
    margin: 10px;
}