#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    z-index: 1000;
}

#chatbot-container.open {
    display: flex;
}

#chatbot-header {
    background: #0073aa;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-close {
    cursor: pointer;
    font-size: 20px;
}

#chatbot-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    max-height: 400px;
}

.chatbot-message {
    margin: 5px 0;
    padding: 8px 12px;
    border-radius: 8px;
}

.chatbot-message.bot {
    background: #e0f5ff;
    margin-right: 10px;
    float: left;
    display: inline-block;
    clear: both;
    color: #0273aa;
}

.chatbot-message.user {
    background: #99c7dd;
    color: #0273aa;
    margin-left: 10px;
    text-align: right;
    clear: both;
    float: right;
    display: inline-block;
    text-transform: none;
    font-weight: 500;

}

.chatbot-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chatbot-option {
    background: #e0e0e0;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    color:#0273aa;
}


.chatbot-option:hover {
    background: #d0d0d0;
}

#chatbot-input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid #e0e0e0;
}

#chatbot-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

#chatbot-send {
    margin-left: 10px;
    padding: 8px 12px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.chatbot-message.bot:empty {
    display: none;
}

#chatbot-footer {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #666;
}

#chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0073aa;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 10000;
}