
.channel-card {
    display: flex;
    flex-direction: row; /* Ensure horizontal alignment */
    align-items: center;
    padding: 12px;
/*    border-bottom: 1px solid #eee;*/
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.channel-card:hover {
    background-color: #333;
}

.user-channel-avatar {
    border-radius: 50%;
    margin-right: 12px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,  
                    linear-gradient(10deg, #fff, #5271ff) border-box;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.user-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.user-fullname {
    font-size: 16px;
    font-weight: 500;
    color: #f0f0f0;
}

.user-username {
    font-size: 14px;
    color: #888;
}

.follow-btn {
    background-color: #5271ff;
    color: #fff!important;
    border: none;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-left: auto; /* Push to the far right */
}

.follow-btn:hover {
    background-color: #529cff;
}
