body {
  background-color: #303130;
  color: white !important;
}
main {
  padding-top: 10px;
  font-size: 20px;
}
footer {
  color: white !important;
}
a, a:hover {
  font-weight: bold;
  color: white;
  text-decoration: none;
  background-color: transparent;
}
code {
  background-color: #f1f1f1;
}
.nav a, .nav a:hover {
  color: white;
}
.content {
  padding-bottom: 25px;
}
.navbar-dark .navbar-nav .nav-link {
  font-weight: bold;
  color: white;
}
.shadow {
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}
.card {
  color: white !important;
  background-color: #393939;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}
.table {
  color: white !important;
}
#ToTopBtn {
  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: #0561B8; /* 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 */
}
#ToTopBtn:hover {
  background-color: #3378B9; /* Add a dark-grey background on hover */
}