/* 🆘 SBS HELPER BUTTON STYLES */

.sbs-help-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1;
    padding: 0;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.sbs-help-btn:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: #d4af37;
    transform: scale(1.1);
}

.sbs-help-btn:active {
    transform: scale(0.95);
}

/* For sections that need relative positioning */
.help-section {
    position: relative;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .sbs-help-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}