/* Bug Report Widget - global floating button, stacked above the AI chat widget
   (#aiChatWidget, css/ai-chat.css) in the same bottom-left corner so the two don't overlap. */
#bugReportWidget {
    position: fixed;
    bottom: 6.5rem;
    left: 1.5rem;
    z-index: 9998;
    font-family: inherit;
}

.bug-report-fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(234,88,12,0.4);
    transition: transform 0.2s;
}

.bug-report-fab:hover {
    transform: scale(1.1);
}
