:root {
	--lightBlue: #1f5166;
	--darkBlue: #084259;
	--fontGrey: #f0f0f0;
	--Wine: #C70039;
	--headerHeight: 77px;
	--hoverblue: hsl(197,53%,35%);
	--sidebarWidth: 0px;
}



body {
	background-color: hsl(0, 0%, 80%);
}

.content {
	width: min(800px,100%);
	margin: auto;
	background-color: var(--fontGrey);
	min-height: calc(100vh - var(--headerHeight) - 40px);
	/* height:auto; */
	overflow-y: visible;
	flex-grow: 0;
}

h1 {
	margin-bottom: 5px;
}

h2 {
	margin-top: 5px;
	margin-bottom: 5px;
}

.toggle__button {
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
}

.toggle__button::before {
    content: '\25b8';
    float: left;
    padding-right: 5px;
	padding-top: 5px;
}

/* .toggle__button:::hover {
	transform: translate(2px,2px);
} */

.toggle__button--active::before {
    content: '\25be';
}

.toggle__button_content {
	margin-bottom: 20px;
    overflow: hidden;
    height: 0px;
	transform: scaleY(0);
	transform-origin: top;
    transition: 0.5s;
}


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



.Predictor-table {
	width: fit-content;
	display: grid;
	grid-template-columns: minmax(max-content,150px) max-content max-content max-content;
	align-items: center;
	/* margin-top: 20px; */

	column-gap: 12px;
	row-gap: 2px;
	margin-bottom: 10px;
}

.predictor {
	font-size: 1.1em;
}

.webpage:not(:empty),
.executable:not(:empty) {
	border: black solid 2px;
	padding: 3px;
	margin: 2px;
	border-radius: 16px;
	text-align: center;
	/* color: var(--fontGrey); */
}

.webpage:not(:empty):hover,
.executable:not(:empty):hover {
	background-color: black;
	color: var(--fontGrey);
}

.article {
	text-decoration: underline;
	color: var(--lightBlue);
}
.infoText {
	/* text-decoration:underline; */
	font-size: 1.2em;
	color: var(--darkBlue);
}

.popup {
	position: relative;
	display: inline-block;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
  }
  
/* The actual popup */
.popup .popuptext {
	visibility: hidden;
	width: 160px;
	background-color: #555;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 8px 0;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -80px;
  }
  
  /* Popup arrow */
  .popup .popuptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
  }
  
  /* Toggle this class - hide and show the popup */
  .popup .show {
	visibility: visible;
	-webkit-animation: fadeIn 1s;
	animation: fadeIn 1s;
  }
  
  /* Add animation (fade in the popup) */
  @-webkit-keyframes fadeIn {
	from {opacity: 0;} 
	to {opacity: 1;}
  }
  
  @keyframes fadeIn {
	from {opacity: 0;}
	to {opacity:1 ;}
  }