#ggb-chatbot-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    max-height: 500px;
    background: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: "Segoe UI", Roboto, sans-serif;
    z-index: 9999;
    border: 1px solid #ddd;
}

#ggb-chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0073aa;
    color: #fff;
    font-size: 20px;
    text-align: center;
    line-height: 50px;
    border: none;
    cursor: pointer;
    z-index: 10000;
    transition: background 0.3s ease;
}

#ggb-chatbot-toggle:hover {
    background: #005f8c;
}

#ggb-chat-header {
    padding: 12px;
    background: #0073aa;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

#ggb-chat-header img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}
#ggb-chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
	height: 100%;
    overflow: hidden;
}

#ggb-chat-log {
    flex: 1;
    overflow-y: auto;
    padding: 5px;
    max-height: 250px; /* or adjust based on container */
	scroll-behavior: smooth;
}

/*#ggb-chat-log {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
    background: #fff;
}*/

#ggb-chat-form {
    display: flex;
    border-top: 1px solid #eee;
    padding: 8px;
    background: #f4f4f4;
}

#ggb-chat-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    margin-right: 8px;
}

#ggb-chat-form button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

#ggb-chat-form button:hover {
    background: #005f8c;
}

.user-msg, .bot-msg {
    margin-bottom: 10px;
}

.user-msg strong {
    color: #444;
}

.bot-msg strong {
    color: #0073aa;
}

.bot-msg a {
    color: #d6336c;
    font-weight: bold;
    text-decoration: underline;
}

.ggb-chatbot-hidden {
    display: none;
}