.sec-audit-wrapper {
	background: #f9f9f9;
	padding: 30px;
	border-radius: 10px;
	border: 1px solid #ddd;
	max-width: 600px;
	margin: 20px auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.sec-audit-wrapper h3 {
	margin-top: 0;
	color: #23282d;
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

.form-group input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

#start-audit-btn {
	background: #0073aa;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	width: 100%;
}

#start-audit-btn:hover {
	background: #005177;
}

.progress-bar {
	background: #eee;
	height: 20px;
	border-radius: 10px;
	overflow: hidden;
	margin-top: 10px;
}

.progress-inner {
	background: #0073aa;
	height: 100%;
	width: 0%;
	transition: width 2s ease-in-out;
}

.score-display {
	font-size: 48px;
	font-weight: bold;
	text-align: center;
	margin: 20px 0;
	color: #0073aa;
}

.audit-item {
	padding: 10px;
	border-left: 4px solid #ccc;
	margin-bottom: 10px;
	background: #fff;
}

.audit-item.pass { border-color: #46b450; }
.audit-item.warning { border-color: #ffb900; }
.audit-item.fail { border-color: #dc3232; }
