#onu-clients-app{
    max-width:900px;
    margin:auto;
    padding:12px;
    font-family:Inter,sans-serif;
}

.onu-search-wrap{
    position:sticky;
    top:0;
    z-index:20;
    background:#f5f7fb;
    padding-bottom:12px;
}

.onu-search{
    width:100%;
    height:54px;
    border-radius:18px;
    border:1px solid #dbe4ee;
    background:white;
    padding:0 18px;
    font-size:16px;
    box-sizing:border-box;
}

.onu-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.onu-client-card{
    background:white;
    border-radius:24px;
    padding:18px;
    box-shadow:0 2px 10px rgba(0,0,0,.04);
    border:1px solid #edf2f7;
    cursor:pointer;
    transition:.2s ease;
}

.onu-client-card:hover{
    transform:translateY(-2px);
}

.onu-client-top{
    display:flex;
    gap:14px;
}

.onu-avatar{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#eef2ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    font-weight:700;
    flex-shrink:0;
}

.onu-client-main{
    flex:1;
    min-width:0;
}

.onu-client-name{
    font-size:18px;
    font-weight:700;
    color:#111827;
    margin-bottom:6px;
}

.onu-client-meta{
    color:#6b7280;
    line-height:1.5;
    font-size:14px;
}

.onu-client-actions{
    display:flex;
    gap:10px;
    margin-top:16px;
}

.onu-btn{
    height:42px;
    padding:0 16px;
    border-radius:14px;
    border:1px solid #dbe4ee;
    background:white;
    font-weight:600;
    text-decoration:none;
    color:#111827;
    display:inline-flex;
    align-items:center;
}

.onu-btn-primary{
    background:#111827;
    color:white;
    border:0;
}

@media(max-width:768px){

    .onu-client-card{
        padding:16px;
    }

    .onu-avatar{
        width:60px;
        height:60px;
        font-size:22px;
    }

    .onu-client-actions{
        flex-wrap:wrap;
    }

    .onu-btn{
        flex:1;
        justify-content:center;
    }
}