a:link,
a:visited {
  color: #f8e933;
}

/*menu related CSSs*/
.menu {
  display: flex;
  align-items: center;
  height: 36px;
  padding-left: 8px;
  padding-right: 8px;
  margin-right: 2px;
}

.menu_on {
  color: azure;
  background: #e28741;
}
.menu_off {
  color: azure;
  background: #606060;
}
.menu_disabled {
  color: #9e9e9e;
  background: #606060;
}
/*hover interaction only available in menu_off classes*/
.menu_off:hover {
  cursor: pointer;
  text-decoration: underline;
}

/*button related CSSs*/
.button_on,
.button_disabled {
  text-align: center;
  padding-top: 5px;
  height: 36px;
  width: 200px;
}
.button_on {
  color: azure;
  background: #e28741;
}
.button_disabled {
  color: #9e9e9e;
  background: #606060;
}
/*hover interaction only available in menu_off classes*/
.button_on:hover {
  cursor: pointer;
  text-decoration: underline;
}

.model_goal {
  width: 150px;
  padding: 0px;
  margin-left: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
}

.left_seperator {
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #454545;
}

.right_text_emph {
  font-weight: 800;
}

kbd {
  font-size: 18px;
  background: #1f1f43;
  color: #6089a6;
  padding: 2px;
  padding-left: 8px;
  padding-right: 8px;
}

/*scroll bar related*/
::-webkit-scrollbar {
  width: 12px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #000000;
}

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

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #e28741;
}

.color_reasonable {
  /* color: #0b8b15; */
  color: #18dd27;
}
.color_unreasonable {
  color: #f8e933;
}
.color_accurate {
  /* color: #1c6df0; */
  color: #3780f5;
}
.color_inaccurate {
  color: #e24172;
}
