/* ==================== HIDE TABS ==================== */
/* Hide Community tab */
#portal_tabCommunity {
    display: none !important;
}
/* TEMPORARILY DISABLED - Testing if tabs appear
body:not(.logged-in) #portal_tabSolutions {
    display: none !important;
}
body:not(.logged-in) #portal_tabCases {
    display: none !important;
}
*/

/* ==================== LOGO SIZE (EXTRA LARGE - 250px) ==================== */
/* Make logo EXTRA LARGE (250px) */
.Header__logo,
.Header__logoimg img {
    max-width: 250px !important;
    width: 250px !important;
    height: auto !important;
    max-height: 250px !important;
}
/* Add extra spacing around bigger logo */
.Header__logoPart {
    padding: 20px 0 !important;
}
/* Make sure logo container doesn't constrain it */
.Header__logoimg {
    width: auto !important;
    height: auto !important;
}
/* ==================== HIDE WATCHLIST & USERS ==================== */
/* Hide Watchlist features */
.Watchlist,
[class*="watchlist"],
[class*="Watchlist"],
a[href*="watchlist"] {
    display: none !important;
}
/* Hide Users features */
.Users,
[class*="users"],
[class*="Users"],
a[href*="/users"] {
    display: none !important;
}
/* Hide in profile menu */
.Profile__nav a[href*="users"],
.Profile__menu a[href*="users"],
.Profile__nav a[href*="watchlist"],
.Profile__menu a[href*="watchlist"] {
    display: none !important;
}
/* ==================== SIDEBAR TEXT FIX (TARGETED) ==================== */
/* Target ONLY the actual sidebar section navigation */
.kb-sections,
.kb-sections * {
    color: #ffffff !important;
}
/* Sidebar section titles and descriptions */
.kb-section-title,
.kb-section-description {
    color: #ffffff !important;
}
/* Links in the sidebar section list */
.kb-sections a {
    color: #d6a33e !important;
}
.kb-sections a:hover {
    color: #ffffff !important;
}
/* Follow button area */
.follow-section {
    color: #ffffff !important;
}
/* Subscriber count */
.follower-count {
    color: #ffffff !important;
}
/* Hide the All Channel filter dropdown */
[class*="channelFilter"],
[class*="ChannelFilter"],
.channel-filter,
select[name*="channel"],
.filter-channel {
    display: none !important;
}
/* If that doesn't work, try this more aggressive version */
.ticket-filters select:last-of-type,
.filters-container > div:last-child {
    display: none !important;
}
