#ai-chat-box {
    height: 350px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #0dcaf0 #f8f9fa;
}

#ai-chat-box::-webkit-scrollbar {
    width: 6px;
}

#ai-chat-box::-webkit-scrollbar-track {
    background: #f8f9fa;
}

#ai-chat-box::-webkit-scrollbar-thumb {
    background-color: #0dcaf0;
    border-radius: 20px;
}

/* AI Assistant Panel Styling */
#ai-assistant-panel {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: white;
    border-radius: 15px;
    z-index: 1040;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#ai-assistant-panel.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 575.98px) {
    #ai-assistant-panel {
        width: calc(100vw - 40px);
        right: 20px;
        bottom: 80px;
    }
}

.bg-info.bg-opacity-10 {
    background-color: rgba(13, 202, 240, 0.1) !important;
}

#ai-assistant-btn {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

#ai-assistant-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}