h1 {
    font-family: Calibri, Ubuntu, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    font-size: 18pt;
    color: #519DE9;
}

h2 {
    font-family: Calibri, Ubuntu, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    font-size: 16pt;
    color: #519DE9;
}

h3 {
    font-family: Calibri, Ubuntu, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    font-size: 14pt;
    color: #519DE9;
}

h4 {
    font-family: Calibri, Ubuntu, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    font-size: 13pt;
    color: #606060;
}

h5 {
    font-family: Calibri, Ubuntu, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    font-size: 11pt;
    color: #606060;
}

h6 {
    font-family: Calibri, Ubuntu, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    font-size: 9pt;
    color: #606060;
}

p {
    font-family: Calibri, Ubuntu, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    font-size: 11pt;
    color: #202020;
}

button {
    border-radius: 3pt;
    background-color: #cbeaff;
    font-size: 10pt;
    cursor: pointer;
    margin-top: 2px;
    margin-bottom: 2px;
    margin-left: 5px;
    margin-right: 5px;
}

button:hover {
    background-color: #79baec;
}

input[type=text] input[type=date] input[type=month] input[type=number] input[type=password] select .select2 {
    padding: 5px;
}

a {
    color: #145388;
    font-family: Calibri, Ubuntu, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    font-size: 9pt;
    text-decoration: none;
}

a:hover {
    color: darkorange;
}

.title {
    font-family: Calibri, Ubuntu, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    font-size: 11pt;
    font-weight: normal;
}

.title1 {
    font-family: Calibri, Ubuntu, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    font-size: 9pt;
    font-weight: normal;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

#leftpanel {
    margin-bottom: 15px;
    background: #145388;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 35px;
    height: 100%;
    overflow: auto;
}

#leftpanel input[type=text], #leftpanel input[type=date], input[type=month], #leftpanel input[type=number], #leftpanel select, #leftpanel .select2 {
    width: 220px;
    padding: 3px;
}

#leftpanel .title {
    color: lightgrey;
}

#leftpanel h3 {
    color: lightgrey;
}

table th, td {
    font-family: Calibri, Ubuntu, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    font-size: 9pt;
    padding: 3px;
}

table th {
    border-radius: 3px;
    font-weight: normal;
    text-align: center;
    background: #145388;
    color: white;
}

table th a {
    font-weight: normal;
    text-align: center;
    background: #145388;
    color: white;
}

table tr:nth-child(odd) {
    background-color: #FFFFFF;
}

table tr:nth-child(even) {
    background-color: #F8F8F8;
}

.caption {
    color: black;
    font-family: Calibri, Ubuntu, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    font-size: 9pt;
}

.chartcaption {
    font-family: Calibri, Ubuntu, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    font-size: 11pt;
    font-weight: normal;
    color: #404080;
    text-align: center;
}

.text {
    font-family: Calibri, Ubuntu, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    font-size: 9pt;
    font-weight: normal;
    color: #808080;
    text-align: left;
}

.leadertext {
    font-family: Calibri, Ubuntu, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    font-size: 18pt;
    font-weight: normal;
    color: #145388;
    text-align: left;
}

.leaderboard {
    background: white;
    text-align: center;
    margin: 30px;
    padding: 10px;
}

.imagebutton {
    cursor: pointer;
    margin-left: 15px;
}

/*

    Tabs
*/

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

.tabcontent {
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
  }
  
/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* JSON Formatter */
pre {
    background-color: ghostwhite;
    border: 1px solid silver;
    padding: 10px 20px;
    margin: 20px; 
}
.json-key {
    color: purple;
}
.json-value {
    color: navy;
}
.json-string {
    color: blue;
}