@media (prefers-color-scheme: dark) {
  #topMenuBar {
    background: #1c1b22;
  }
  #topMenuBar div span a {
    color: white;
  }
  #topMenuBar div span ul,
  #topMenuBar div span li {
    background: #1c1b22;
  }
}
@media (prefers-color-scheme: light) {
  #topMenuBar {
    background: #fff;
  }
  #topMenuBar div span a {
    color: black;
  }
  #topMenuBar div span ul,
  #topMenuBar div span li {
    background: #fff;
  }
}
* {
  padding: 0px;
  margin: 0px;
  outline: none;
  border: none;
  font-family: Arial;
  text-decoration: none;
}
#pageWrapper {
  width: 100%;
  margin: auto;
}
#topMenuBar {
  padding: 10px;
  border-bottom: 1px solid black;
  padding-bottom: 10px;
  text-align: center;
}
#topMenuBar div {
  display: inline-block;
}
#topMenuBar div span:hover ul {
  display: inline-block;
}
#topMenuBar div span a {
  padding: 5px 0px;
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
}
#topMenuBar div span ul {
  display: none;
  position: absolute;
  margin: 25px 0 0 -75px;
  list-style-type: none;
  z-index: 10;
}
#topMenuBar div span ul li {
  border: 1px solid black;
}
#topMenuBar div span ul li a {
  padding: 5px 20px 5px 0;
  width: 100%;
}
#pageWrapper #bodyWrapper {
  padding: 10px;
}
#pageWrapper #bodyWrapper button {
  min-width: 50px;
  min-height: 31px;
  padding: 0px 5px;
  border: 2px solid darkgray;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  transition: box-shadow 0.1s ease-in-out, border 0.05s ease-in-out;
}
#pageWrapper #bodyWrapper button:disabled {
  border-top: 2px solid #dddddd;
  border-left: 2px solid #dddddd;
  border-right: 2px solid #dddddd;
  border-bottom: 2px solid #dddddd;
  color: #dddddd;
  cursor: not-allowed !important;
}
#pageWrapper #bodyWrapper button:enabled:hover {
  border-top: 2px solid lightgray;
  border-left: 2px solid lightgray;
  border-right: 2px solid gray;
  border-bottom: 2px solid gray;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}
#pageWrapper #bodyWrapper button:enabled:active {
  border-top: 2px solid gray;
  border-left: 2px solid gray;
  border-right: 2px solid lightgray;
  border-bottom: 2px solid lightgray;
  background: #ededed !important;
}
#pageWrapper #bodyWrapper button.btnIcon {
  font-size: 20px;
  font-weight: bold;
}
#pageWrapper #bodyWrapper button.pressed {
  border-top: 2px solid gray;
  border-left: 2px solid gray;
  border-right: 2px solid lightgray;
  border-bottom: 2px solid lightgray;
  background: #99ff99;
}
#pageWrapper #bodyWrapper button.btn-small {
  min-width: 35px !important;
  min-height: 25px !important;
  border-width: 1px !important;
}
#pageWrapper #bodyWrapper button.btn-small i.fa {
  margin-right: unset !important;
}
#pageWrapper #bodyWrapper input,
#pageWrapper #bodyWrapper select,
#pageWrapper #bodyWrapper textarea {
  margin: 2px;
  border: 2px solid darkgray;
  padding: 5px;
  border-radius: 10px;
}
#pageWrapper #bodyWrapper input:focus,
#pageWrapper #bodyWrapper select:focus,
#pageWrapper #bodyWrapper textarea:focus {
  border-top: 2px solid gray;
  border-left: 2px solid gray;
  border-right: 2px solid lightgray;
  border-bottom: 2px solid lightgray;
}
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px;
}
.info {
  color: black;
  border: 1px solid blue;
  padding: 10px;
}
.info:before {
  content: "\f05a";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: blue;
}
.round {
  border-radius: 10px;
}
