.admission-wrapper {
	padding: 60px 20px;
	max-width: 1200px;
	margin: 0 auto;
	font-family: 'Inter', sans-serif;
	color: var(--text-color);
	background-color: var(--background);
}

.admission-wrapper h1 {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 20px;
	color: var(--text-color);
}

.admission-wrapper h2 {
	font-size: 1.5rem;
	text-align: center;
	margin: 40px 0 20px;
	font-weight: 600;
}

.schedule-table {
	width: 100%;
	border-collapse: collapse;
	background-color: var(--card-bg);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 50px;
}

.schedule-table th,
.schedule-table td {
	padding: 16px 20px;
	text-align: center;
	font-size: 0.95rem;
	border-bottom: 1px solid #ddd;
}

.schedule-table th {
	background-color: #3f4bc0;
	color: #fff;
	font-weight: 600;
}

.schedule-table tr:nth-child(odd) td {
	background-color: #f7f8ff;
}

.schedule-table tr:nth-child(even) td {
	background-color: #ffffff;
}

.schedule-table tr:last-child td {
	border-bottom: none;
}

body.dark-theme .schedule-table th {
	background-color: #5865f2;
	color: #fff;
}

body.dark-theme .schedule-table td {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .schedule-table tr:nth-child(odd) td {
	background-color: #2e2e2e;
}

body.dark-theme .schedule-table tr:nth-child(even) td {
	background-color: #1c1c1c;
}

.schedule-table td[colspan] {
	text-align: center;
}

.pdf-links {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin: 40px 0;
	align-items: center;
}

.pdf-links a {
	display: block;
	width: 100%;
	max-width: 800px;
	text-align: center;
	padding: 12px 20px;
	background-color: #2f49d1;
	color: #fff;
	font-weight: 500;
	text-decoration: none;
	border-radius: 8px;
	transition: background-color 0.3s ease;
}

.pdf-links a:hover {
	background-color: #445de8;
}

body.dark-theme .pdf-links a {
	background-color: #3f4bc0;
}

body.dark-theme .pdf-links a:hover {
	background-color: #5865f2;
}

.pdf-viewer-section {
	padding: 40px 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.pdf-viewer-section h2 {
	font-size: 1.5rem;
	margin: 40px 0 16px;
	text-align: center;
	color: var(--text-color);
}

.pdf-viewer-section iframe {
	width: 100%;
	height: 600px;
	border: none;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	background-color: var(--card-bg);
}

.pdf-section {
	padding: 60px 20px;
	background-color: var(--background-color);
	color: var(--text-color);
	text-align: center;
	max-width: 1200px;
	margin: 0 auto 60px;
}

.pdf-section h2 {
	font-size: 2rem;
	margin-bottom: 12px;
}

.pdf-section p {
	font-size: 1.1rem;
	margin-bottom: 24px;
}

.pdf-frame {
	width: 100%;
	height: 600px;
	border: none;
	border-radius: 12px;
}
