/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Dec 13 2025 | 23:34:08 */
/* Centers avatar in profile banner image */
#item-header-avatar img.avatar {
	position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
	box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.6) !important;
}

/* Base style for all role badges */
.bp-member-type,
[class*="bb-current-member-"] {
	position: relative !important;
	display: inline-flex !important;
    align-items: center !important; /* safe fallback */
    top: 10px !important;   /* adjust distance below profile avatar */
    white-space: nowrap !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    gap: 6px !important;
    color: #000000 !important;
	background-color: #eeeeee !important;
    width: auto !important;
    max-width: none !important;
    text-transform: uppercase;
	border: 2px solid silver !important;
	box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.6) !important;
}

/* Styles basic badge on hoverable profile cards */
.bb-card-profile-type {
	background-color: #f2f2f2 !important;
	color: #0e0eab !important;
	font-weight: 400 !important;
}

/* Hide duplicate member-type badge next to the username */
#item-header .user-nicename + .bp-member-type {
    display: none !important;
}

[class*="bb-current-group-"] {
	display: none !important;
}

.bb-current-member-pro-team {
    background-color: silver !important;
}

.bb-current-member-nfl-team {
	color: #000000 !important;
    background-color: #FFD700 !important;
}
.bb-current-member-nfl-team::before {
    content: "Verified \1F3C8 "; /* football emoji */
}

.bb-current-member-mlb-team {
	color: #000000 !important;
    background-color: #FFD700 !important;
}
.bb-current-member-mlb-team::before,
.bb-current-member-milb-team::before {
    content: "Verified \26BE "; /* baseball emoji */
}

.bb-current-member-nba-team {
	color: #000000 !important;
    background-color: #FFD700 !important;
}
.bb-current-member-nba-team::before {
    content: "Verified \01F3C0 "; /* basketball emoji */
}

.bb-current-member-radio-station {
    background-color: #f6edd8 !important;
}
.bb-current-member-radio-station::before {
	content: "Verified \01F50A "; /* radio speaker icon */
}

.bb-current-member-all-access {
	color: #000000 !important;
    background-color: #FFD700 !important;
}
.bb-current-member-all-access::before {
    content: "Verified \01F39F \FE0F "; /* ticket emoji */
}

.bb-current-member-media-member::before {
    content: "Verified \01F4DD "; /* notes emoji */
}

.bb-current-member-usl-soccer-team::before {
    content: "Verified \26BD "; /* soccer football emoji */
}

.bb-current-member-nhl-team:before {
    content: "Verified \01F3D2 "; /* hockey stick emoji */
}
