.reco-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    transition:.2s;
}
.reco-card:hover{
    transform:translateY(-4px);
}

.reco-avatar{
    width:100%;
    height:220px;
    object-fit:cover;
    background:#111;
}

.reco-online{
    position:absolute;
    top:12px;
    right:12px;
    background:#28a745;
    color:#fff;
    padding:4px 10px;
    font-size:12px;
    border-radius:20px;
}

.reco-role{
    font-size:12px;
    background:#111;
    color:#fff;
    padding:4px 10px;
    border-radius:20px;
}
/* จุดสถานะออนไลน์ */
/* จุดสถานะออนไลน์ */
.online-dot{
    position: absolute;
    top: 8px;
    right: 8px;
    width: 12px;
    height: 12px;
    background: #22c55e;          /* เขียว */
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 5;
}

/* ถ้าอยากให้ดู realtime ขึ้น */
.online-dot.pulse{
    animation: pulseOnline 1.6s infinite;
}

@keyframes pulseOnline{
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
    70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ให้กรอบรูปเป็น reference ของ dot */
.ci-pic{
    position: relative;
}