/**
 * Floating feedback CTA linking to ClickUp board
 */

.prototype-feedback-cta {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 21000;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm, 0.5rem);
    padding: 0.65rem 1.15rem;
    border-radius: var(--radius-lg, 999px);
    background: rgba(255, 255, 255, 0.96);
    color: var(--color-dark-slate, #2F4858);
    border: 1px solid rgba(47, 72, 88, 0.18);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 24px rgba(17, 30, 56, 0.14), 0 2px 6px rgba(17, 30, 56, 0.12);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.prototype-feedback-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(17, 30, 56, 0.22), 0 4px 10px rgba(17, 30, 56, 0.14);
    border-color: rgba(47, 72, 88, 0.32);
    color: var(--color-dark-slate, #2F4858);
}

.prototype-feedback-cta:focus-visible {
    outline: 3px solid rgba(237, 32, 39, 0.4);
    outline-offset: 3px;
}

.prototype-feedback-cta__icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    object-fit: contain;
}

.prototype-feedback-cta span {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .prototype-feedback-cta {
        padding: 0.65rem 0.75rem;
        right: 12px;
        top: 12px;
        box-shadow: 0 8px 18px rgba(17, 30, 56, 0.18);
    }

    .prototype-feedback-cta span {
        display: none;
    }

    .prototype-feedback-cta__icon {
        width: 22px;
        height: 22px;
    }
}
