/**
        * Using CSS custom properties (variables)
        * https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
        * Official UNC Color Palette
        * https://identity.unc.edu/brand/color-palette/
        */
        :root {
            --web-carolina-blue: #4b9cd3;
            --link-blue: #007fae;
            --athletics-navy: #13294b;
            --light-gray: #e1e1e1;
            --dark-gray: #767676;
            --black: #151515;
        }

        .bg-unc {
            background-color: var(--web-carolina-blue)!important;
        }

        footer {
            background-color: var(--web-carolina-blue);
            padding-top: 30px;
            margin-top: 30px;
            color: #000;
            font-size: 0.8rem;
        }

        footer a {
            color: #000;
            font-weight: bold;
        }

        #foot-links a {
            font-size: 1.25em;
        }

        #foot-bottom {
            border-top: 1px solid #ccc;
            margin-top: 35px;
            padding: 20px 10px;
            text-align: center;
        }

        h1.lead {
            font-weight: bold;
        }
        
        .btn-unc {
            color: #000;
            background-color: var(--web-carolina-blue);
            border-color: var(--web-carolina-blue);
        }

        .btn-unc:hover {
            color: #fff;
            background-color: var(--link-blue);
            border-color: var(--link-blue);
        }

        .contents-cell {
            word-break: break-word;
        }

        .spinner-border {
            width: 1.5rem;
            height: 1.5rem;
        }

        .section__title {
            background-color: var(--dark-gray);
            color: #fff;
            margin: 0;
            padding: 0.5rem 0.9375rem;
        }

        .section__content {
            background-color: var(--light-gray);
        }

        #filters-form .table td:first-child {
            padding-left: 0;
        }

        .filter-buttons {
            display: flex;
        }

        /* use the same color and font-size as in the Tableau example report */
        .tableau-like {
            color: rgb(51, 51, 51);
            text-decoration: none;
            font-size: 0.75rem;
        }

        /* example showing how you can modify term description columns only */
        th.term-desc, .term-desc {
            background-color: #d7d9f2;
        }

        /* modifies the options when using bootstrap-select to "sm" size */
        #filters-form .dropdown-item {
            font-size: .875rem;
        }

        #results-container {
            background-image: url(https://www.unc.edu/wp-content/uploads/2020/04/sized007620_coronavirus_campus_scenes0971-e1587988660309.jpg);
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            bottom: 0;
            min-height: 30rem;
        }

        #results-container .jumbotron {
            background-color: rgba(0, 0, 0, 0.6);
            color: #fff;
            flex-shrink: 0;
            margin: 0 1.25rem 1.25rem 1.25rem;
        }

        #results-container .jumbotron a, .catalog-link, footer a {
            color: #fff;
            text-decoration: underline;
            font-size: 1.25rem;
        }

        th {
            background-color: #fff;
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
        }

        #report-desc-alert {
            margin: 0;
            padding: 0.35rem 0.9375rem;
            font-size: 0.85rem;
        }

        .combo-menu {
            background-color: #fff;
            border: 1px solid var(--bs-form-gray);
            border-radius: 0.25rem;
            /* width: 100%; */
            transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
            font-size: 1rem;
            display: block;
            position: absolute;
            padding-left: 0;
            list-style: none;
            z-index: 1;
        }
        
        .combo-option {
            padding: 0.25rem 2.25rem 0.25rem 0.75rem;
            font-size: 1rem;
        }
        
        .combo-option:hover, .combo-option.option-current {
            background-color: #e9ecef;
        }
        
        .combo-option.option-selected {
            padding-right: 1.875rem;
            position: relative;
        }
        
        .combo-option.option-selected::after {
            border-bottom: 2px solid #000;
            border-right: 2px solid #000;
            content: '';
            height: 1rem;
            position: absolute;
            right: 0.9375rem;
            top: 50%;
            transform: translate(0, -50%) rotate(45deg);
            width: 0.5rem;
        }
        
        