﻿/* Support Button Styles */
.support-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.support-fab:hover,
.support-fab:focus-visible,
.support-fab:active {
    opacity: 1;
    transform: scale(1.05);
}

/* Ensure the button is visible but doesn't interfere with other content */
@media (max-width: 768px) {
    .support-fab {
        bottom: 80px; /* Adjust for mobile navigation if present */
        right: 16px;
    }
}