
/* FOLLOWING button */
.ufs-follow-btn.following {
    border: 1px solid #ccc;
    background: #ccc;
    color: #333;
}

.ufs-follow-btn.following:hover {
    background: #ff4c4c;
    color: #fff;
}

/* REQUESTED button */
.ufs-follow-btn.requested {
    border: 1px solid #f0ad4e;
    background: #f0ad4e;
    color: #fff;
    cursor: not-allowed;
}

.ufs-follow-btn.requested:hover {
    background: #f0ad4e;
    color: #fff;
}


/* FOLLOW button - default */
.ufs-follow-btn {
    border: 1px solid #1a8917;
    background: transparent;
    color: #1a8917;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ufs-follow-btn:hover {
    background: #1a8917;
    color: #fff;
}



/* profile page */
.ufs-profile-container { max-width:800px; margin:0 auto; }
.ufs-profile-header { display:flex; gap:20px; align-items:center; margin-bottom:20px; }
.ufs-avatar img { border-radius:50%; }
.ufs-profile-info h2 { margin:0; }
.ufs-profile-stats { display:flex; gap:20px; margin-bottom:20px; }
.ufs-profile-lists { display:flex; gap:40px; }
.ufs-follow-list { list-style:none; padding:0; }
.ufs-follow-list li { display:flex; justify-content:space-between; padding:6px 0; border-bottom:1px solid #eee; }
.ufs-follow-list li a { color:#1a8917; text-decoration:none; }
.ufs-follow-list li button { border:1px solid #1a8917; background:transparent; color:#1a8917; border-radius:999px; padding:4px 10px; cursor:pointer; }
.ufs-follow-list li button:hover { background:#1a8917; color:#fff; }


#ufs-admin-modal {
    position: fixed; z-index: 9999;
}