.result-live {
	background-color: #d4edda;
}
.result-dead {
	background-color: #f8d7da;
}
.result-nomatch {
	background-color: #e2e3e5;
}
#status-indicator {
	font-size: 0.8rem;
}
.loading {
	opacity: 0.5;
	pointer-events: none;
}
/* Styles for the dotted underline terms */
.tooltip-term {
	border-bottom: 1px dotted #007bff;
	cursor: help;
	position: relative;
	display: inline-block;
}
/* Custom tooltip styling */
.tooltip-term .tooltip-text {
	visibility: hidden;
	width: 240px;
	background-color: #555;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 8px;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -120px;
	opacity: 0;
	transition: opacity 0.3s;
	font-size: 0.85rem;
	font-weight: normal;
}
/* Arrow for the tooltip */
.tooltip-term .tooltip-text::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
}
/* Show the tooltip on hover */
.tooltip-term:hover .tooltip-text {
	visibility: visible;
	opacity: 1;
}
.dz-message {
	padding: 2rem 1rem !important;
}
.dropzone {
	width: 40%;
}
.dz-preview .dz-file-preview {
	display: none !important;
}