/* QAFlow - Social Handler AJAX fragments (handlers/social-handler.php)
   Extracted from inline style="" attributes built via PHP string concatenation.
   These classes style the HTML fragments returned by get_followers_list /
   get_following_list and inserted into the DOM via .innerHTML by the consumer. */

.sh-follow-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color, #f1f5f9);
}

.sh-follow-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.sh-follow-info {
    flex: 1;
    min-width: 0;
}

.sh-follow-name {
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    color: var(--text-primary);
    display: block;
}

.sh-follow-uname {
    font-size: .8rem;
    color: var(--text-secondary);
}

.sh-follow-btn {
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 600;
    padding: .3rem .85rem;
}

.sh-follow-empty {
    text-align: center;
    padding: 30px;
    color: var(--text-secondary);
}

.sh-follow-empty-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}
