.cgfol-btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    background: transparent;
    color: inherit;
    border: 1px solid rgba(128,128,128,0.4);
    border-radius: 20px; /* pill shape */
    padding: 6px 20px;
    font-size: 13px; font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.cgfol-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFF;
    color: #FFF;
}
.cgfol-following {
    background: rgba(255, 255, 255, 0.05); /* Subtle active tint */
    border-color: rgba(255, 255, 255, 0.3);
}
.cgfol-following:hover {
    background: #EF4444; /* Unfollow warning red */
    color: #FFF; border-color: #EF4444;
}
