#chatbot-toggle {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 56px;
    height: 56px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    z-index: 9999;
}

#chatbot-box {
    position: fixed;
    right: 20px;
    bottom: 130px;
    width: 360px;
    max-width: calc(100vw - 20px);
    height: 520px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 10000;
}

#chatbot-header {
    background: #0d6efd;
    color: #fff;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

#chatbot-header button {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

#chatbot-messages {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    background: #f8f9fa;
}

.user-msg,
.bot-msg {
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    line-height: 1.5;
    word-break: break-word;
}

.user-msg {
    background: #dbeafe;
    margin-left: 40px;
    text-align: right;
}

.bot-msg {
    background: #fff;
    margin-right: 40px;
    border: 1px solid #eee;
}

#chatbot-input-wrap {
    display: flex;
    gap: 8px;
    padding: 10px;
    border-top: 1px solid #ddd;
    background: #fff;
}

#chatbot-input {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    outline: none;
}

#chatbot-send {
    border: 0;
    background: #0d6efd;
    color: #fff;
    border-radius: 8px;
    padding: 0 14px;
    cursor: pointer;
}

.chatbot-quick-links {
    margin-top: 8px;
}

.chat-btn {
    display: inline-block;
    margin: 4px 6px 0 0;
    padding: 6px 10px;
    background: #0d6efd;
    color: #fff !important;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
}

.chat-btn:hover {
    background: #0b5ed7;
    text-decoration: none;
}