/**
 * ACL Deeper Dive - Assessment Results Styles
 *
 * Front-end styles for assessment results confirmation page
 *
 * @package ACL_Deeper_Dive
 * @since   1.0.0
 */

.acl-assessment-results {
	max-width: 800px;
	margin: 40px auto;
	padding: 20px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.acl-results-header {
	text-align: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid #e5e5e5;
}

.acl-results-logo {
    margin-bottom: 15px;
    text-align: center;
}

.acl-results-logo img {
    max-width: 200px;
    height: auto;
}

.acl-results-header h2 {
	margin: 0 0 10px 0;
	color: #333;
}

.acl-result-type {
	font-size: 18px;
	color: #666;
}

.acl-results-scores,
.acl-results-explanation,
.acl-results-answers {
	margin-bottom: 30px;
}

.acl-results-scores h3,
.acl-results-explanation h3,
.acl-results-answers h3 {
	margin: 0 0 15px 0;
	color: #333;
	font-size: 20px;
}

.acl-score-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 10px;
}

.acl-score-list li {
	padding: 15px;
	background: #f5f5f5;
	border-radius: 4px;
	text-align: center;
}

.acl-score-list li.acl-winner {
	background: #d4edda;
	border: 2px solid #28a745;
}

.acl-answers-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.acl-answers-list li {
	padding: 15px;
	margin-bottom: 10px;
	background: #f9f9f9;
	border-left: 4px solid #2271b1;
	border-radius: 4px;
}

.acl-question {
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
}

.acl-answer {
	color: #666;
}

/* Responsive styles */
@media (max-width: 768px) {
	.acl-assessment-results {
		margin: 20px;
		padding: 15px;
	}

	.acl-score-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.acl-results-header h2 {
		font-size: 24px;
	}
}

@media (max-width: 480px) {
	.acl-score-list {
		grid-template-columns: 1fr;
	}
}