.calc-ege__container {
	max-width: 1000px;
	margin: 0 auto 50px;
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	padding: 25px;
}

header {
	text-align: center;
	margin-bottom: 25px;
	padding-bottom: 20px;
	// border-bottom: 2px solid #e3f2fd;
	position: relative;
}

.subtitle {
	color: #424242;
	margin-top: 10px;
	font-size: 1.1rem;
	margin-bottom: 15px;
}

.instruction-container {
	display: flex;
	justify-content: center;
	margin-bottom: 15px;
}

.instruction-btn {
	background-color: #0055a5;
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s;
	font-weight: 500;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
}

.instruction-btn:hover {
	background-color: #003d7a;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.instruction-btn i {
	margin-right: 8px;
	font-weight: bold;
}

.instruction-panel {
	background-color: #f8f9fa;
	border-radius: 8px;
	padding: 20px;
	margin: 20px 0;
	border-left: 4px solid #0055a5;
	display: none;
}

.instruction-panel h3 {
	color: #0055a5;
	margin-bottom: 15px;
	text-align: center;
}

.instruction-steps {
	counter-reset: step;
	margin-bottom: 15px;
}

.step {
	margin-bottom: 12px;
	padding-left: 35px;
	position: relative;
}

.step::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	left: 0;
	top: 0;
	background: #0055a5;
	color: white;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 0.9rem;
}

.important-note {
	background: rgba(255, 193, 7, 0.15);
	border-left: 4px solid #ffc107;
	padding: 12px;
	border-radius: 0 5px 5px 0;
	margin-top: 15px;
	font-size: 0.95rem;
}

.selection-section {
	margin-bottom: 25px;
}

.section-title {
	color: #0055a5;
	font-size: 1.4rem;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #e3f2fd;
	display: flex;
	align-items: center;
}

.section-title i {
	margin-right: 10px;
	font-weight: bold;
}

.subject-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin-top: 20px;
}

@media (max-width: 768px) {
	.subject-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.subject-list {
		grid-template-columns: 1fr;
	}
}

.subject-item {
	display: flex;
	align-items: center;
	padding: 12px;
	background-color: #f5f9ff;
	border-radius: 8px;
	border: 1px solid #bbdefb;
	transition: all 0.3s;
}

.subject-item:hover {
	background-color: #e3f2fd;
	transform: translateY(-2px);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.subject-item input[type="checkbox"] {
	margin-right: 10px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.subject-item label {
	font-weight: 500;
	cursor: pointer;
	flex-grow: 1;
}

.score-input {
	width: 70px;
	padding: 8px;
	border: 1px solid #90caf9;
	border-radius: 5px;
	font-size: 16px;
	text-align: center;
	margin-left: 10px;
	display: none;
}

.score-input:focus {
	border-color: #2196f3;
	outline: none;
	box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.2);
}

.btn-container {
	text-align: center;
	margin: 25px 0;
}

.btn {
	background-color: #0055a5;
	color: white;
	border: none;
	padding: 12px 35px;
	font-size: 17px;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s;
	font-weight: 500;
	display: none;
}

.btn:hover {
	background-color: #003d7a;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.results-section {
	margin-top: 30px;
	display: none;
}

.results-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 15px;
	border-bottom: 2px solid #e3f2fd;
	margin-bottom: 20px;
}

.results-title {
	font-size: 1.4rem;
	color: #0055a5;
	margin: 0;
}

.results-count {
	background-color: #e3f2fd;
	color: #0055a5;
	padding: 5px 15px;
	border-radius: 20px;
	font-weight: bold;
}

.programs-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.program-item {
	background: white;
	border-left: 4px solid #0055a5;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
	position: relative;
}

.program-item:hover {
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-left-color: #003d7a;
}

.program-code {
	font-weight: bold;
	color: #0055a5;
	font-size: 1.1rem;
	margin-bottom: 5px;
}

.program-name {
	font-weight: bold;
	font-size: 1.3rem;
	margin: 5px 0;
	color: #003d7a;
}

.program-profile {
	color: #555;
	margin-bottom: 15px;
	font-style: italic;
}

.program-description {
	margin: 15px 0;
	line-height: 1.5;
	color: #444;
	padding: 10px 0;
	border-top: 1px dashed #e0e0e0;
	border-bottom: 1px dashed #e0e0e0;
}

.exams-title {
	font-weight: bold;
	color: #0055a5;
	margin-bottom: 8px;
	margin-top: 15px;
}

.exams-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 15px;
}

.exam-item {
	background-color: #e3f2fd;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 0.9rem;
}

.no-results {
	text-align: center;
	padding: 40px;
	color: #757575;
	font-size: 1.2rem;
	grid-column: 1 / -1;
}

.passed {
	background-color: #e8f5e9 !important;
	color: #2e7d32;
}

.not-passed {
	background-color: #ffebee !important;
	color: #c62828;
}

.program-link {
	display: inline-block;
	margin-top: 15px;
	padding: 8px 15px;
	background-color: #e3f2fd;
	color: #0055a5;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 500;
	transition: all 0.3s;
}

.program-link:hover {
	background-color: #bbdefb;
	text-decoration: underline;
}
