.chatbot-widget{
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1055;
}

.chatbot-toggle{
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 50%;
    background: #111;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
    font-size: 22px;
}

.chatbot-panel{
    width: 360px;
    max-width: calc(100vw - 24px);
    height: 560px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,.18);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.chatbot-header{
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    display:flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-messages{
    flex: 1;
    overflow-y: auto;
    padding: 14px;
    background: #f8f9fb;
}

.chatbot-message{
    max-width: 85%;
    padding: 10px 12px;
    border-radius: 14px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.45;
    white-space: pre-line;
}

.chatbot-message.bot{
    background: #fff;
    border: 1px solid #e8e8e8;
}

.chatbot-message.user{
    background: #111;
    color: #fff;
    margin-left: auto;
}

.chatbot-quick-actions{
    padding: 10px 14px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display:flex;
    flex-wrap: wrap;
    gap: 8px;
    background: #fff;
}

.chatbot-quick-actions button{
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
}

.chatbot-footer{
    display:flex;
    gap: 10px;
    padding: 14px;
    background: #fff;
}