Is there a way to customize the background color and other CSS settings when using tabBox and tabPanel in a Shiny dashboard? I've attempted to use .tab-pane, but it ends up changing the background color of the entire dashboard instead of just the panel.
fluidRow(
tabBox(
title = "First tabBox",
# The id lets us use input$tabset1 on the server to find the current tab
id = "tabset1", height = "250px",
tabPanel("Tab1", "First tab content"),
tabPanel("Tab2", "Tab content 2")
),