@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body{
  background-color: #A3A3A3;
  margin: 0px;
  overflow:hidden;
}

.ubuntu-mono-regular {
  font-family: "Ubuntu Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.ubuntu-mono-bold {
  font-family: "Ubuntu Mono", monospace;
  font-weight: 700;
  font-style: normal;
}

.ubuntu-mono-regular-italic {
  font-family: "Ubuntu Mono", monospace;
  font-weight: 400;
  font-style: italic;
}

.ubuntu-mono-bold-italic {
  font-family: "Ubuntu Mono", monospace;
  font-weight: 700;
  font-style: italic;
}

.header{
  font-family: "Ubuntu Mono", monospace;
  font-weight: 700;
  font-style: bold !important;
  font-size: 16px !important;

  background-color: #F3F3F3;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;

  border-bottom: black solid 2px;
}

.header span{
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}

.header-selected{
  background-color: white !important;
  color: #A3A3A3;
}

.header span:hover{
  background-color: black !important;
  color: white;
}

.resizeable{
  border: 2px solid;
  padding-bottom: 20px;
  padding-top: 0px !important;
  resize: both;
  overflow: hidden;
  background-color: #F3F3F3;

  /* Thanks to https://stackoverflow.com/a/76325675 */
  display: flex;
  flex-direction: column;
}

.resize-body{
  padding: 20px;
  overflow-y: auto;
  overflow-x: hidden;
}

th{
    position: sticky;
    top: 0px;
    background-color: #F3F3F3;
    margin-top: auto;
}



.bwfilter{
    filter: grayscale(100%);
    transition: .3s ease-in-out;
}

.bwfilter:hover{
  filter: grayscale(0%);
  transition: .3s ease-in-out;
}

.mini-main-banner{
    position: relative;
    max-width: 500px;
    filter: grayscale(100%);
    min-height: 120%;
    transition: .3s ease-in-out;
}

.mini-main-banner:hover{
  filter: grayscale(0%);
  transition: .3s ease-in-out;
}

.mini-main-banner-container{
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  max-height: 120px;
  overflow: hidden;
  max-width: 500px;
  border-radius: 5px;
}

::-webkit-scrollbar {
  width: 10px;
}


/* Track */
::-webkit-scrollbar-track {
  background: #F3F3F3;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #A3A3A3;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000;
  cursor: pointer;
}

.options{
  padding-top: 20px;
  padding-bottom: 20px;
}

.options-div{
  padding:10px;
}

.options-button {
  cursor: alias !important;
  font-family: inherit;
  font-size: inherit;
  border: black 1px solid;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  color: black;
  text-align: center;
  text-decoration: none;

  cursor: alias !important;
  color: black;
  text-decoration: none;
  font-family: "Ubuntu Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.options-button:hover{
  background-color: black;
  color: white;
}

#moveable_div_one {
  position: absolute;
  top: 460px;
  left:24px;
  z-index: 12;
}

#moveable_div_two {
  position: absolute;
  top: 80px;
  left:24px;
  z-index: 10;
}

#moveable_div_three {
  position: absolute;
  top: 80px;
  left: 750px;
  z-index: 8;
}

#moveable_div_four {
  position: absolute;
  top: 60px;
  left: 70px;
  z-index: 6;
}

#moveable_div_one_header, #moveable_div_two_header, #moveable_div_three_header,  #moveable_div_four_header {
  padding: 4px;
  cursor: move;
  z-index: 15;
  border-bottom: black solid 2px;
  text-align: center;
  font-family: "Ubuntu Mono", monospace;
  font-weight: 700;
  font-style: bold !important;
  font-size: 16px !important;
}

h1{
  font-family: "Ubuntu Mono", monospace;
  font-weight: 700;
  font-style: bold;
  font-size: 20px !important;
}

h2{
  font-family: "Ubuntu Mono", monospace;
  font-weight: 700;
  font-style: bold;
  font-size: 18px !important;
}


table{
  width: 100%;
}

th{
  font-family: "Ubuntu Mono", monospace;
  font-weight: 700;
  font-style: bold;
  font-size: 16px !important;
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  white-space: nowrap;
  text-align: left;
  margin:0;
  border-collapse: collapse;
  border:0px;
}


td{
  font-family: "Ubuntu Mono", monospace;
  font-weight: 400;
  font-style: normal;
  font-size: 14px !important;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  white-space: nowrap;
  text-align: left;
  margin:0;
  border-collapse: collapse;
  border:0px;
}

.hoverable:hover{
  background-color: white;
  outline: 1px white solid;
}

.header span{
  cursor: context-menu;
}

.pointer-cursor{
  cursor: pointer;
}

.info-header-holder{
  background-color: black;
  color: white;
}

.left-align-td{
  text-align: left;
}

.right-align-td{
  text-align: right;
}

.bottom-bar{
  position: absolute;
  bottom: 0;
  padding-top: auto;
}

a{
  color: inherit;
  text-decoration: none;
}


p{
  font-family: "Ubuntu Mono", monospace;
  font-weight: 400;
  font-style: normal;
  line-height: 20px;
}

li{
  font-family: "Ubuntu Mono", monospace;
  font-weight: 400;
  font-style: normal;
  line-height: 20px;
}


.image-grid{
  padding: 5px;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

.image-grid-image{
  max-width: 100%;
  width: 168px;
  height: 185px;
  border: 1px black solid;
  margin-left: auto;
  margin-right: 4px;
  margin-bottom: 4px;
  overflow: hidden;
  float:left;
  display: block !important;

  filter: grayscale(100%);
  transition: .3s ease-in-out;
}


.image-grid-image img{
  height: 168px;
  border-bottom: 1px black solid;
  margin: 0;
  padding: 0;
}


.image-grid-image:hover{
  filter: grayscale(0%);
  background-color: white;
}

.caption-text{
  font-family: "Ubuntu Mono", monospace;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 10px;
  margin: 0px;
  padding-top: 0px;
  padding-left: 5px;
  padding-right:5px;
}

.trcursor{
  cursor: pointer;
}

.trcursor:hover td{
  text-decoration: underline;
}


.inTextLinkHover{
  text-decoration:underline;
  text-decoration-color: #000000;
  transition: 0.2s;
}

.inTextLinkHover:hover{
  background-color: #000000;
  color: #FFFFFF
}
