.faculty-table-wrapper {
	padding: 60px 20px;
	max-width: 1200px;
	margin: 0 auto;
	background-color: var(--background);
	color: var(--text-color);
}

.faculty-table-wrapper h1 {
	font-size: 2rem;
	margin-bottom: 30px;
	text-align: center;
	color: var(--text-color);
}

.faculty-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 60px;
	background-color: var(--card-bg);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.faculty-table.reveal {
	opacity: 1;
	transform: none;
}

.faculty-table th,
.faculty-table td {
	padding: 16px 20px;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	vertical-align: top;
}

.faculty-table th {
	background-color: #5865f2;
	color: #fff;
	font-weight: 600;
	font-size: 1rem;
}

.faculty-table td {
	font-size: 0.95rem;
	line-height: 1.6;
	background-color: var(--card-bg);
}

.faculty-table tr:last-child td {
	border-bottom: none;
}

body.dark-theme .faculty-table th {
	background-color: #3f4bc0;
}

body.dark-theme .faculty-table td {
	border-color: rgba(255, 255, 255, 0.1);
	background-color: #1c1c1c;
}
