@font-face {
    font-family: "SFPro";
    font-style: normal;
    font-weight: 200;
    src: url(./fonts/SF_Pro_SBR.otf) format("opentype");
  }
  
  * {
    font-family: "SFPro", sans-serif;
  }
  
#button-layout {
  background-color: #ffffff;
  padding: 3px 8px 3px 8px;
  border-radius: 10px;
  z-index: 3;
  display: grid;
  position: fixed;
  top: 10px;
  left: 10px;
  opacity: 1;
  width: 50px;
  height: auto;
}

a:link {
  color: #336699;
  font-size: 12px;
  text-decoration: none;
}
a:visited {
  color: #336699;
  font-size: 12px;
  text-decoration: none;
}
a:hover,
a:active {
  color: maroon;
  font-size: 12px;
  text-decoration: none;
}

.tabBtn {
  margin: 5px 0;
  background-color: #4caf50;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease-out;
}

.tabBtn:hover {
  background-color: #49dd64;
}

.tabBtn.selected {
  cursor: default;
  background-color: #417e4c;
}

.tabBtn.selected:hover {
  background-color: #417e4c;
}

.tabIcon {
  height: 30px;
  width: auto;
}
