﻿/* FlexZor Remote Support Styles */

/* Highlight effect for remote support */
.support-highlight {
    animation: support-pulse 1s infinite !important;
    border: 3px solid #f59e0b !important;
    box-shadow: 0 0 20px #f59e0b !important;
}

@keyframes support-pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Operator message overlay */
.operator-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #3b82f6;
    color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 99999;
    max-width: 300px;
    animation: slideInRight 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

    .operator-message strong {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
    }

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}
