/* servicetester.css - Styles for the service tester page */

/* Service tester headlines */
.servicetester-headline-good {
	color: var(--lt-success-color);
	margin-right: 0.25em;
}

.servicetester-headline-bad {
	color: var(--lt-danger-color);
	margin-right: 0.25em;
}

/* Progress bar styling */
.servicetester-progress {
	height: 30px;
	margin-bottom: 10px;
	background-color: #e9ecef; /* track */
	border-radius: 15px;
	overflow: hidden;
	position: relative;
	width: 90%;
}

.servicetester-progress-bar {
	width: 0%;
	height: 100%;
	background-color: #007bff;
	transition: width 0.3s ease;
	border-radius: 15px; /* keep same radius so ends look rounded while filling */
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-left: 10px;
	color: white;
	font-weight: bold;
	font-size: 14px;
	overflow: hidden;
}

/* Loading indicator */
.servicetester-loading {
	/* Additional loading styles can be added here if needed */
}

/* Service tester completion indicator */
.servicetester-complete {
	color: var(--lt-success-color);
}

/* Reduce top padding in the alert box */
#contentS .alert {
	padding-top: 8px;
}

/* Add vertical spacing between URL list items */
#contentS ul.no li {
	margin-bottom: 0.5em;
}
