/* Download Tab Fix - Force proper Bootstrap tab behavior */

/* Ensure all tab-panes are hidden by default */
.tab-content > .tab-pane {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Only show the active tab */
.tab-content > .tab-pane.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure tab-downloads specifically follows the rule */
#tab-downloads {
    display: none !important;
    visibility: hidden !important;
}

#tab-downloads.active {
    display: block !important;
    visibility: visible !important;
}

/* Make sure nav-pills work correctly */
#tabs.nav-pills > li > a {
    cursor: pointer;
}

#tabs.nav-pills > li.active > a {
    background-color: #337ab7;
    color: #fff;
}
