/* Apply slate blue gradient background to all main tabs */

/* All right tab content areas get the slate blue gradient */
.right-tab-content {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
}

/* Ensure the active tabs maintain the background */
.right-tab-content.active {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
}

/* Specific tab IDs to ensure consistency */
#active-highlightsTab,
#active-interactiveTab,
#active-searchTab,
#active-conversationTab,
#active-profilerTab {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
}

/* Remove any conflicting backgrounds from child elements */
.right-tab-content > div:first-child {
    background: transparent !important;
}

/* Ensure subtab containers are transparent to show parent background */
.highlights-subtab-container,
.interactive-subtab-container,
.search-content-area,
.conversation-subtab-container,
.profiler-subtab-container {
    background: transparent !important;
}

/* Ensure all subtab content areas are transparent */
.highlights-subtab-content,
.interactive-subtab-content,
.conversation-subtab-content,
.profiler-subtab-content {
    background: transparent !important;
}