#chatbot-container {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    background: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#chatbot-messages {
    height: 300px;
    overflow-y: auto;
    margin-bottom: 10px;
    padding: 5px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.user-message, .bot-message {
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 3px;
}

.user-message {
    background: #e6f7ff;
    text-align: left;
}

.bot-message {
    background: #fff3cd;
    text-align: left;
}

#chatbot-input {
    width: calc(100% - 60px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 5px;
}

#chatbot-send {
    width: 50px;
    padding: 10px;
    border: none;
    background: #007bff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

#chatbot-send:hover {
    background: #0056b3;
}

/* Floating Chatbot Widget */
#chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: url('logo.png') no-repeat center center;
    background-size: cover;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

#chatbot-widget.open {
    width: 400px;
    height: 500px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#chatbot-widget iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    display: none;
}

#chatbot-widget.open iframe {
    display: block;
}

