/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face{
  font-family:"Segoe UI";
  src:url("segoeuithis.ttf");
}
@font-face{
  font-family:"Segoe UI";
  font-weight: bold;
  src:url("segoeuithisb.ttf");
}

body {
  background-color: #464646;
  color: white;
  font-family: "Segoe UI";
  font-size: 14px;
  padding: 0px;
  margin: 0px;
}
h5 {
  font-weight: bold;
  color: yellow;
  border-bottom: 1px solid #686A65;
  }
a{
  color: #D8DED3;
  }
button {
  background-color:grey;
  border: black solid 1.5px;
  border-radius:4px;
  padding: 4px 6px 4px 6px;
  color: white;
  text-align: left;
  }
  
.title {
  background:linear-gradient(to left top,#5A6A50,#494E49);
  padding: 7px 10px 7px 10px;
  width: 100%;
  }
.section {
  background:#686A65;
  display: none;
  border: #686A65 solid;
  border-width: 1px 0 1px 0;
  width: 100%;
  height: 100%;
  order: 99;
  }
.scd-section {
  background:#494E49;
  padding: 7px 10px 7px 10px;
  width: 100%;
  overflow: auto;
  overflow-y: scroll;
  height: 100%;
  }
.trt-section {
  background:#686A65;
  padding: 7px 10px 7px 10px;
  width: 100%;
  }
  
.spacer {
  background: radial-gradient(rgba(104,106,101,255),rgba(0,0,0,0));
  height: 2px;
  margin: 5px 10px 5px 10px;
  }
  
.tabs {
  display: flex;
  flex-wrap: wrap;
  background: transparent;
  height: 100%;
}
.input {
  position: absolute;
  opacity: 0;
}
.label {
  margin: 3px 0px 0px 3px;
  width: 80px;
  color: white;
  padding: 4px 5px;
  background: #464646;
  border: #686A65 solid;
  border-width: 1px 1px 0 1px;
  border-radius: 5px 5px 0px 0px;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
}
.label:hover {
  color:yellow;
  background: #464646;
}
.label:active {
  color: yellow;
  background: #686A65;
}
.input:focus + .label {
  z-index: 1;
}
.input:checked + .label {
  background: #686A65;
  color: yellow;
}
.input:checked + .label + .section {
  display: block;
}