/**
 * USM Support - User Style
 * 
 * Этот файл копируется в /var/www/erp/public/main/css/user_style.css
 * 
 * Основные стили виджета находятся в operator-chat.css
 * и загружаются динамически через user_script.js
 * 
 * Здесь можно добавить дополнительные стили или переопределения.
 */

/* ========================================
   Sticky Header для страницы устройства
   ======================================== */

#device-sticky-header {
    position: fixed;
    top: 0;
    left: 200px; /* ширина левого меню */
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    z-index: 9999;
    padding: 8px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-bottom: 3px solid #4caf50;
    display: none;
    align-items: center;
    gap: 15px;
}

#device-sticky-header.visible {
    display: flex !important;
}

#device-sticky-header .sticky-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
}

#device-sticky-header .sticky-ip {
    font-size: 14px;
    color: #666;
    background: #e8f5e9;
    padding: 3px 10px;
    border-radius: 4px;
    font-family: monospace;
}

#device-sticky-header .sticky-ip a {
    color: #2e7d32;
    text-decoration: none;
    margin-left: 8px;
}

#device-sticky-header .sticky-ip a:hover {
    text-decoration: underline;
}

/* Адаптация под мобильные */
@media (max-width: 768px) {
    #device-sticky-header {
        left: 0;
        padding: 6px 10px;
    }
    
    #device-sticky-header .sticky-title {
        font-size: 13px;
        max-width: 200px;
    }
}
