.chatbot-container-662 {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.chatbot-toggle-662 {
    background-color: #55B578;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.chatbot-toggle-662:hover {
    transform: scale(1.05);
    background-color: #1D3932; /* Donkergroene hover kleur in lijn met de huisstijl */
}

.chatbot-window-662 {
    background: white;
    width: 350px;
    height: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: absolute;
    bottom: 80px;
    right: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform-origin: bottom right;
}

.chatbot-hidden-662 {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9);
}

.chatbot-header-662 {
    background-color: #1D3932;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-662 h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chatbot-close-662 {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.chatbot-close-662:hover {
    color: #55B578;
}

.chatbot-messages-662 {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #f9f9f9;
}

.chatbot-message-662 {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
}

.bot-message-662 {
    background-color: #e0e0e0;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.user-message-662 {
    background-color: #55B578;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chatbot-input-area-662 {
    display: flex;
    padding: 10px;
    background: white;
    border-top: 1px solid #eee;
}

#chatbot-input-662 {
    flex-grow: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    outline: none;
    font-size: 14px;
}

#chatbot-input-662:focus {
    border-color: #55B578;
}

.chatbot-send-662 {
    background-color: #55B578;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    margin-left: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.chatbot-send-662:hover {
    background-color: #1D3932; /* Donkergroene hover kleur in lijn met de huisstijl */
}

@media (max-width: 480px) {
    .chatbot-window-662 {
        width: 300px;
        right: -10px;
    }
}