#jsn-chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0073aa;
    color: white;
    padding: 0.75em;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
#jsn-chatbot-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
}
#jsn-chat-header {
    background: #0073aa;
    color: white;
    padding: 0.5em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
#jsn-chat-log {
    height: 250px;
    overflow-y: auto;
    padding: 1em;
    background: #f9f9f9;
}
#jsn-chat-input {
    border: 1px solid #ccc;
    border-top: none;
    padding: 0.5em;
    width: calc(100% - 100px);
    font-size: 1em;
    border-bottom-left-radius: 8px;
}
#jsn-send {
    width: 80px;
    background: #0073aa;
    color: white;
    border: none;
    font-size: 1em;
    cursor: pointer;
    border-bottom-right-radius: 8px;
}
.user-msg {
    text-align: right;
    margin: 0.5em 0;
    color: #0073aa;
}
.bot-msg {
    text-align: left;
    margin: 0.5em 0;
    color: #333;
}
.bot-msg p {
    margin: 0.5em 0;
}
.bot-msg ul {
    padding-left: 1.2em;
    margin: 0.5em 0;
}
.bot-msg code {
    background: #eee;
    padding: 2px 4px;
    border-radius: 4px;
    font-family: monospace;
}
.bot-msg pre {
    background: #f4f4f4;
    padding: 1em;
    overflow-x: auto;
    border-radius: 4px;
}
