/**
 * Top-level SocialMania config tabs (#configTabs / #configTabContent).
 *
 * Default ALL direct child panes hidden; only .active.show is visible. This fixes first paint
 * where several panes could otherwise stack (stray .show, coins.css min-height, or before JS runs).
 *
 * Linked from header_socialmania.html.
 */
#configTabContent {
    position: relative;
    min-height: 0;
}

#configTabContent > .tab-pane {
    display: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: transparent !important;
}

#configTabContent > .tab-pane.active.show {
    display: block !important;
}

#configTabContent > .tab-pane[hidden] {
    display: none !important;
    min-height: 0 !important;
}
