
/* Remote Support Floating Button Styles */
#remote-support-floating-button {
    position: fixed !important;
    bottom: 20px !important;
    z-index: 9999 !important;
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

#remote-support-floating-button.position-right {
    right: 20px !important;
    left: auto !important;
}

#remote-support-floating-button.position-left {
    left: 20px !important;
    right: auto !important;
}

#remote-support-floating-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    animation: none;
}

#remote-support-floating-button a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}

#remote-support-floating-button .support-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

#remote-support-floating-button .support-text {
    white-space: nowrap;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(214, 55, 55, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #remote-support-floating-button {
        bottom: 15px !important;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    #remote-support-floating-button.position-right {
        right: 15px !important;
        left: auto !important;
    }
    
    #remote-support-floating-button.position-left {
        left: 15px !important;
        right: auto !important;
    }
    
    #remote-support-floating-button .support-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    #remote-support-floating-button .support-text {
        display: none;
    }
    
    #remote-support-floating-button {
        padding: 12px;
        border-radius: 50%;
    }
}
