* {
    font-family: 'Times New Roman', Times, serif;
}

body {
    background-color: white;
    padding-bottom: 25px;
    text-align: center;
}

div {
    margin: auto;
    text-align: center;
}

p {
    color: white;
    font-size: 2px;
    text-align: left;
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 2.5;
    padding-bottom: 0%;
    line-height: normal;
}

h1 {
    color: #0a004b;
    font-size: 50px;
    text-align: center;
    margin: 0;
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 20px;
    padding-bottom: 0px;
}

h2 {
    color: #0a004b;
    font-size: 20px;
    text-align: center;
}

code {
    color: white;
}

canvas {
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

html {
    margin: 0;
    padding: 0;
}

table {
    background-color: white;
    color: white;
}

th {
    background-color: #122560;
    border: 2px solid black;
    font-size: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.tableButton {
    background-color: #990000;
    display: block;
    font-size: 20px;
    text-align: center;
    width: 100%;
    height: 35px;
}

.tableInput {
    background-color: #990000;
    border: none;
    color: black;
    display: block;
    font-size: 20px;
    text-align: center;
    width: 99%;
    height: 35px;
}

.otherButton {
    background-color: #990000;
    color: white;
    cursor: pointer;
    font-size: 20px;
    min-width: 100px;
    padding: 15px;
    text-align: center;
    width: 15%;
}

.tableButton:hover {
    background-color: gray;
}

.aBlack {
    text-decoration: none;
    color: black;
}

label {
    color: black;
    text-align: left;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
    background-color: #990000;
    outline: none;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .collapsible:hover,
  .otherButton:hover {
    background-color: gray;
  }

  .active {
    background-color: #990000;
  }
  
  /* Style the collapsible content. Note: hidden by default */
  .content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: white;
  }

.db {
    background-color: #7ba0af;
    color: black;
    border: 2px solid black;
    font-size: 20px;
}

.lb {
    background-color: rgb(165, 195, 205);
    color: black;
    border: 2px solid black;
    font-size: 20px;
    padding: 2px;
}

.selecter:hover {
    background-color: white;
}

option {
    background-color: rgb(165, 195, 205);
}

button.lb:hover {
    background-color: white;
}

.sidebyside {
    border: 2px solid #990000;
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: top;
    width: fit-content;
}

::placeholder {
    color: black;
}

#topBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #122560; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
  }
  
  #topBtn:hover {
    background-color: #7ba0af; /* Add a dark-grey background on hover */
  }