
#masthead.masthead {
  background-color: rgb(0,0,0);
}

.ui.segment.word {
  padding: 4px;
  margin: 0px;
}


.bold {
  font-weight: bold;
}

.toast_detail {
  max-width: 1000px;
  max-height: 600px;
  overflow: auto;
}

.toast_close {
  cursor: pointer;
  position: absolute;
	top: 0px;
	left: 5px;
}

.toast {
  position: relative;
  max-height: 750px;
	padding: 15px 30px;
  border-radius: 7px;
  border-style: solid;
  border-color: #777;
  border-width: 2px;
	margin: 10px 0px 0px 0px;
  bottom: translateY(0px);
  transform: scaleY(1);
  overflow: hidden;
  transition: all 0.5s;
}

.toast.fade {
  visibility: hidden;
  transform: scaleY(0);
	margin: 0px;
  opacity: 0;
  padding: 0px;
  border-width: 0px;
  bottom: translateY(-500px);
  transition: all 0.5s;
}

.toast_container {
	display: flex;
	flex-direction: column;
  min-width: 250px;
  text-align: left;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 25px;
  bottom: 5px;
}

.version_tag {
  position: fixed;
  bottom: 0;
  right: 0;
  font-size: 10px;
  color: #666; /* adjust the color as needed */
  padding: 2px 5px;
}
