html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}
mark {
    background-color: orange;
    padding: 0;
}
body {
  margin-bottom: 60px;
}
.navbar {
    background: #000000
}
.nav-link:hover {
    background-color: lightgoldenrodyellow;
}
/*    .nav-item::after {
    content: '';
    display: block;
    width: 0px;
    height: 2px;
    background: crimson;
    transition: 0.4s
}*/

.nav-item:hover::after {
    width: 100%
}

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: crimson
}

.nav-link {
    padding: 5px 5px;
    transition: 0.2s
}

#report-jbe, #report-cdx, #report-mediabase  {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

#report-jbe td, th, #report-cdx td, th,  #report-mediabase td , th {
    border: 1px solid lightgray;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 10px;
    padding-right: 10px;
}

#report-jbe tr:nth-child(even), #report-cdx tr:nth-child(even), #report-mediabase tr:nth-child(even), tr:nth-child(even) {
    background-color: #f2f2f2;
}

#report-jbe tr:hover, #report-cdx tr:hover, #report-mediabase tr:hover {
    background-color: lightgoldenrodyellow;
}

#report-jbe th, #report-cdx th, #report-mediabase th {
    padding-top: 8px;
    padding-bottom: 8px;
    color: white;
}

#report-jbe th {
    background-color: #06377f;
}
#report-cdx th {
    background-color: darkolivegreen;
}
#report-mediabase th {
    background-color: indianred ;
}

.radio-new {
    background-color: yellow;
    font-size: xx-small;
}

.table-number {
    text-align: right;
}

.table-centered{
    text-align: center;
}

.fa-circle-arrow-down {
    color: red;
}
.fa-circle-arrow-up {
    color: green;
}
.fa-circle-arrow-right {
    color: grey;
}
.arrow-down{    
    color: red;
    font-family: Wingdings;
}
.arrow-up {
    color: green;
    font-family: Wingdings;
}
.arrow-right {
    color: grey;
    font-family: Wingdings;
}

.artists {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(255px,1fr));
    grid-gap: 5px;
}
.artists > a:hover {
    background-color: lightgray;
}
.artists > a {
    padding: 5px;
    background-color: lightblue;
    color: black;
    text-decoration: none;
    border: 1px solid darkgray;
}

tbody tr:hover {
    background-color: lightgoldenrodyellow;
}
thead {
    background-color: lightsteelblue;
}
.table thead th {
    border-bottom: none;
}
thead tr {
    font-weight: bold;
}

td {
    border: 1px solid lightgrey;
}

.statement-menu {
    display: flex;
    margin-bottom: 5px;
}

.statement-menu-item {
    background-color: indianred;
    color: white;
    padding: 5px;
    font-size: 12px;
    border: none;
    margin: 2px;
}

    .statement-menu-item a {
        color: white;
        padding: 5px;
        font-size: 12px;
        text-decoration: none;
        display: block;
    }
    .statement-menu-item span {
        margin: 5px;
        font-size: 12px;
    }
    .statement-menu-item input {
        margin: 5px;
    }
    .statement-menu-item:hover {
        background-color: cadetblue;
    }

.statement-menu-last {
    margin-left: auto;
}


.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    color: black;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: black;
        padding: 5px;
        text-decoration: none;
        display: block;
    }
        .dropdown-content a > span {
            padding: 5px;
        }

        .dropdown-content a:hover {
            background-color: lightgray;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.col-options-button:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: indianred;
}

/*.modal-dialog {
    max-width: 55%
}*/