*{
    color:rgb(238, 240, 241);
    margin-left: 5px;
    margin-right: 5px;
    font-family: Arial, Helvetica, sans-serif;
}

::-webkit-scrollbar{
    width: 12px;
}

::-webkit-scrollbar-thumb{
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.25);
}

::-webkit-scrollbar-thumb:hover{
    background-color: rgba(255, 255, 255, 0.5);
}

body{
    background-color:rgb(14, 16, 24);
}

h1{
    text-align: center;
}

table, th, td{
    border: 2px solid rgba(255, 255, 255, 0.33);
}
table{
    border-collapse: collapse;
}
th{
    background-color: rgb(121, 138, 214);
    color: black;
}
td{
    background-color: rgba(255, 255, 255, 0.05);
}
tr:hover{
    background-color: rgba(255, 255, 255, 0.1);
}

.number{
    width: 2.5em;
    color: black;
}

button{
    color:black;
    font-size: 1.6em;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 2px dotted;
}
  
.tooltip .tooltiptext {
    visibility: hidden;
    width: 400px;
    background-color: rgb(14, 16, 24);
    padding: 10px 10px;
    border: 2px solid rgba(255, 255, 255, 0.33);
    
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 105%;
}
  
.tooltip:hover .tooltiptext {
    visibility: visible;
}

ol{
    list-style-type: upper-alpha;
}

.navbtn{
    position: fixed;
    top: 5%;
    right: -10px;
    transition: all 0.3s;
    vertical-align: middle;
    z-index: 4;
}

.navbtn button{
    display: block;
    width: 120px;
    height: 40px;
    background-color: rgb(121, 138, 214);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: all 0.3s;
}

.navbtn button:hover{
    height: 60px;
    font-size: 2rem;
}

#sideBarTab{
    z-index: 3;
    display: grid;
    position: fixed;
    text-align: center;
    top: 5%;
    right: 0px;
    height: 500px;
    width: 0px;
    border: 1px solid rgba(255, 255, 255, 0.33);
    background-color:rgb(14, 16, 24);
    overflow-y: auto;
    visibility: hidden;
    transition: all 0.3s;
}

#sideBarTab button{
    position: sticky;
    font-size: 40px;
    width: 0pt;
    top: 0;
    left: 5px;
    background-color: unset;
    border: none;
    color: rgba(238, 240, 241, 0.651);
}

#sideBarTab button:hover{
    color: rgb(238, 240, 241);
}