
/* 右下角懸浮顆粒按鈕 */
#helper-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0d6efd; /* Bootstrap Primary 藍色 */
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

    #helper-bubble:hover {
        background-color: #0b5ed7;
        transform: translateY(-3px);
    }

/* 小幫手對話視窗定位 */
#helper-window {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 320px;
    z-index: 9999;
    border-radius: 12px;
    overflow: hidden;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#result-list .fw-bold {
    cursor: pointer !important;
}
