#as-chatbot-container {
    border: 1px solid #ccc;
    max-width: 500px;
    margin: 30px auto;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-family: Arial, sans-serif;
}

#as-chatbox {
    height: 250px;
    overflow-y: auto;
    background: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    font-size: 14px;
    border-radius: 5px;
    scroll-behavior: smooth;
}

/* Custom scrollbar */
#as-chatbox::-webkit-scrollbar {
    width: 6px;
}
#as-chatbox::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 3px;
}

/* Message blocks */
#as-chatbox div {
    margin: 6px 0;
    line-height: 1.4;
}
#as-chatbox div strong {
    display: block;
    margin-bottom: 2px;
    color: #333;
}

#as-chat-input {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Optional: Add coloring for bot responses */
#as-chatbox div strong::after {
    content: ":";
}
#as-chatbox div:nth-child(even) {
    background: #f0f0f0;
    padding: 5px 8px;
    border-radius: 5px;
}

/* Responsive support */
@media (max-width: 600px) {
    #as-chatbot-container {
        margin: 20px;
        padding: 10px;
    }
}

#as-chatbox div strong {
    color: var(--chat-accent);
}
