.faculty-page {
	padding: 40px 20px 80px;
	max-width: 1200px;
	margin: 0 auto;
	font-family: 'Inter', sans-serif;
}

.faculty-page h1 {
	text-align: center;
	margin: 40px 0;
	font-size: 2rem;
	color: var(--text-color);
}

.faculty-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin-bottom: 40px;
	background-color: #fff;
	color: #000;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	overflow: hidden;
}

.faculty-table tr:first-child th:first-child {
	border-top-left-radius: 12px;
}
.faculty-table tr:first-child th:last-child {
	border-top-right-radius: 12px;
}
.faculty-table tr:last-child td:first-child {
	border-bottom-left-radius: 12px;
}
.faculty-table tr:last-child td:last-child {
	border-bottom-right-radius: 12px;
}

.faculty-table thead th {
	background-color: #5865f2;
	color: #fff;
	font-weight: 600;
	padding: 14px 18px;
	text-align: center;
	border: none;
	font-size: 1rem;
}

.faculty-table .date-row th {
	background-color: #e0e7ff;
	color: #111;
	font-weight: 500;
	text-align: center;
	font-size: 1rem;
	padding: 10px;
	border: none;
}

.faculty-table td {
	padding: 14px 18px;
	border-bottom: 1px solid #ccc;
	font-size: 0.95rem;
	line-height: 1.6;
	background-color: #fff;
}

.faculty-table tbody tr:nth-child(odd) {
	background-color: #f9f9f9;
}

.faculty-table tbody tr:nth-child(even) {
	background-color: #ffffff;
}

body.dark-theme .faculty-table {
	background-color: #1e1e1e;
	color: #ddd;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

body.dark-theme .faculty-table thead th {
	background-color: #8da1ff;
	color: #111;
}

body.dark-theme .faculty-table .date-row th {
	background-color: #2d2d2d;
	color: #ddd;
}

body.dark-theme .faculty-table td {
	background-color: #1c1c1c;
	color: #ddd;
	border-bottom: 1px solid #333;
}

body.dark-theme .faculty-table tbody tr:nth-child(odd) {
	background-color: #2e2e2e;
}

body.dark-theme .faculty-table tbody tr:nth-child(even) {
	background-color: #1e1e1e;
}
