.accc-header{
    background:linear-gradient(135deg,#25D366,#20ba5a);
    color:#fff;
    padding:18px 20px;
    position:relative;
}

.accc-header h3{
    margin:0;
    font-size:20px;
    font-weight:700;
    line-height:1.3;
}

.accc-header p{
    margin:4px 0 0;
    font-size:13px;
    color:#fff;
    opacity:.95;
}

.accc-body{
    padding:16px;
    background:#f5f5f5;
}

.accc-card{
    display:flex;
    align-items:center;
    text-decoration:none;
    color:#222;
    background:#fff;
    border:1px solid #f0f0f0;
    border-radius:14px;
    padding:14px;
    margin-bottom:10px;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    transition:all .25s ease;
}

.accc-card:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(0,0,0,.14);
}

.accc-card-avatar{
    width:52px;
    height:52px;
    margin-right:12px;
    flex-shrink:0;
}

.accc-card-avatar img{
    width:52px;
    height:52px;
    border-radius:50%;
    object-fit:cover;
    display:block;
}

.accc-avatar-placeholder{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#e9ecef;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.accc-card-info{
    flex:1;
    min-width:0;
}

.accc-card-name{
    font-size:16px;
    font-weight:700;
    line-height:1.2;
    color:#222;
}

.accc-card-position{
    margin-top:4px;
    font-size:13px;
    color:#777;
}

.accc-card-action{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    box-shadow:0 4px 12px rgba(37,211,102,.35);
    transition:all .25s ease;
}

.accc-card:hover .accc-card-action{
    transform:scale(1.08);
}

.accc-whatsapp-icon{
    width:22px;
    height:22px;
    fill:#fff;
}

.accc-card-status{
    display:flex;
    align-items:center;
    gap:6px;
    margin-top:5px;
    font-size:12px;
    color:#28a745;
    font-weight:600;
}

.accc-status-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#25D366;
    box-shadow:0 0 0 3px rgba(37,211,102,.18);
}

.accc-section-title{
    margin:18px 0 10px;
    font-size:15px;
    font-weight:700;
    color:#444;
}

.accc-online-message{
    position:fixed;
    right:82px;
    bottom:32px;
    background:#25D366;
    color:#fff;
    padding:9px 16px;
    border-radius:22px;
    font-size:13px;
    font-weight:600;
    box-shadow:0 4px 15px rgba(0,0,0,.18);
    z-index:9999;
}

.accc-online-message:after{
    content:"";
    position:absolute;
    right:-8px;
    top:50%;
    transform:translateY(-50%);
    border-width:8px 0 8px 8px;
    border-style:solid;
    border-color:transparent transparent transparent #25D366;
}

/* ===========================
   Notebook
=========================== */

@media (max-width:1366px){

    .accc-header{
        padding:16px 18px;
    }

    .accc-header h3{
        font-size:18px;
    }

    .accc-card{
        padding:12px;
    }

}

/* ===========================
   Mobile
=========================== */

@media (max-width:768px){

    .accc-header{
        padding:16px;
    }

    .accc-header h3{
        font-size:18px;
    }

    .accc-header p{
        font-size:12px;
    }

    .accc-body{
        padding:12px;
    }

    .accc-card{
        padding:12px;
        margin-bottom:8px;
    }

    .accc-card-avatar,
    .accc-card-avatar img,
    .accc-avatar-placeholder{
        width:46px;
        height:46px;
    }

    .accc-card-name{
        font-size:15px;
    }

    .accc-card-position{
        font-size:12px;
    }

    .accc-card-action{
        width:40px;
        height:40px;
    }

    .accc-online-message{
        right:18px;
        bottom:82px;
        font-size:12px;
    }

}