/* ============================================================
   Feedback Floating Button
   Extracted from components.js FeedbackButton web component.
   Uses gestalt CSS variables.
   ============================================================ */

.feedback-float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--color-primary, #3172ae);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 20px;
}

.feedback-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    color: #fff;
    text-decoration: none;
}
