/* Extracted from inline <style> */
/* Стили для ролей пользователей */
        .auth-only { display: none; }
        .guest-only { display: flex; }
        .admin-only { display: none; }
        .customer-only { display: none; }
        
        .user-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .user-greeting {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #2c3e50;
            font-weight: 500;
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 50px;
            transition: background-color 0.3s;
        }
        
        .user-greeting:hover {
            background-color: #f0f7ff;
        }
        
        .user-greeting i {
            font-size: 1.2rem;
        }
        
        .user-greeting.admin i {
            color: #9b59b6;
        }
        
        .user-greeting.customer i {
            color: #1a6db3;
        }
        
        .btn-logout {
            background: none;
            border: none;
            color: #666;
            font-size: 1.1rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .btn-logout:hover {
            color: #d63031;
            background-color: #ffeaea;
        }
        
        .user-role {
            font-size: 0.75rem;
            color: #7f8c8d;
            display: block;
            margin-top: 2px;
        }
        
        .btn-admin {
            background-color: #9b59b6;
            color: white;
            padding: 8px 18px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            font-weight: 600;
        }
        
        .btn-admin:hover {
            background-color: #8e44ad;
            transform: translateY(-2px);
        }
        
        .welcome-message {
            background: #e3f2fd;
            padding: 12px 20px;
            border-radius: 10px;
            margin: 15px 0;
            border-left: 4px solid #1a6db3;
            color: #1a3e72;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 0.95rem;
        }
        
        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        @keyframes slideOut {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(100%);
                opacity: 0;
            }
        }
