/**
 * NAV PILLS instead of tabs because we can style them more to our liking
 **/

/**
 * setting some styles for the tabs on State and other pages with Narrative Section tabs
 **/

div#sectiontabs, div#linkrecords {
    font-family: 'Montserrat', sans-serif;
}

/**
 * these are used on Case pages for listing related documents
 **/


ul.nav.nav-pills {
    background-color: #ecebe7;
}

.nav-pills .nav-link {  /* tabs, selected and unselected */
    border-radius: 0;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {  /* selected tab, link text */
    background-color: inherit;
    color: inherit;

    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid black;
}

/**
 * TABBED SCROLLING
 * https://developer.aliyun.com/mirror/npm/package/jquery-bootstrap-scrolling-tabs
 */

div.scrtabs-tab-scroll-arrow {
    height: 37px;
    line-height: 37px;
    padding: 0;
    margin: 0;

    font-size: 20px;
    color: black;

    border: 0 none transparent;
}
div.scrtabs-tab-scroll-arrow.scrtabs-tab-scroll-arrow-right {
    padding-right: 5px;
    padding-left: 5px;
}
div.scrtabs-tab-scroll-arrow.scrtabs-tab-scroll-arrow-left {
    padding-right: 5px;
    padding-left: 5px;
}
