.uc_appmenu-container-row {

 display: flex;
 justify-content: center; 
 align-items: center;  
width:100%;
}

.uc_appmenu-container {
 display: flex;
 flex-direction: row;
 flex-wrap:wrap;
 gap: 10px;
max-width:940px;
margin-left:auto;
margin-right:auto;
}

.uc_appmenu-item {
 background-color: white;
 padding: 10px;
 width: 300px;
 border-radius:4px;
 border: 1px solid #ccc;
 text-align: center;
 font-family: Arial, sans-serif;
 box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
 box-sizing: border-box;
 overflow: hidden;
 display:flex;
}

.uc_appmenu-icon {
 width: 48px;
 height: 48px;
 padding:10px;
 font-size: 28px;
 border-radius: 14px;
 background: #0078d7;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 flex-shrink: 0;
}
.uc_appmenu-icon-clear {
 width: 48px;
 height: 48px;
 padding:10px;
 font-size: 28px;
 border-radius: 14px;
 background: #ffffff;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 flex-shrink: 0;
}

.uc_appmenu-info{
 width: 100%;
 text-align: left;
 padding-left: 10px;
}

.uc_appmenu-title {
 font-size: 12px;
 font-weight:800;
 color: #333;
}

.uc_appmenu-label {
 font-size: 12px;
 color: #333;
}

 .uc_appmenu-item:hover {
 background-color: #eaeaea;
 cursor: pointer;
}

.uc_bt-icon{
 width:30px;
 height:30px;
 border-radius: 15px;
 border: 1px solid #0078d7;
 background: white;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 flex-shrink: 0;
 font-size: 12px;
}