.loader {
	display: none;
	border: 5px solid #f3f3f3;
	border-top: 5px solid #4CAF50;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
	
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.loading-text {
	
	margin-top: 10px;
	font-weight: bold;
	color: #4CAF50;
}

.loader-container {
	
	padding: 20px;
}

.request-error {
	color: red;
}

.cert-info-expired, .analysis-warning {
	color: red;
}

.cert-info-warning {
	color: blue;
}

.cert-info-valid, .analysis-success {
	color: green;
}

.cert-info, .request-info {
	margin: 50px 0;
}

.request-headers {
	color: gray;
	font-size: 13px;
}

.cert-table, .info-table {
	border-radius: 10px;
	background-color: #f3f8ff;
	margin-bottom: 25px;
}

.cert-table td, .info-table td {
	padding: 10px 20px;
}