/* Floating Report Problem Button */
.floating-report-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10000 !important; /* Above everything */
    pointer-events: auto !important;
}

.floating-report-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.floating-report-btn:active {
    transform: scale(0.95);
}

/* Tooltip for the button */
.floating-report-btn::before {
    content: 'Report a Problem';
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.floating-report-btn:hover::before {
    opacity: 1;
}

/* Ensure buttons in content are clickable */
.about-contact .btn,
.legal-section .btn,
.faq-contact .btn {
    cursor: pointer;
    pointer-events: auto !important;
    z-index: 1;
    position: relative;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .floating-report-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
    
    .floating-report-btn::before {
        display: none; /* Hide tooltip on mobile */
    }
}
