.max-button {
	padding: 1rem;
	border-radius: 0.25rem;
	background: linear-gradient(45deg, #050515, #420cae, #480988, #67007f);
	color: #fff;
	text-decoration: none !important;
	font-weight: bold;
	text-align: center;
	font-family: arial;
	font-size: 150%;
}

.max-button-wrapper {
	text-decoration: none !important;
}

.max-logo {
	max-width: 100px;
}

.employee-card {
	display: flex;
	background-color: #ffffff;
	margin-bottom: 20px;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: box-shadow 0.3s ease;
	font-family: Arial, sans-serif;
}

.employee-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
	
.employee-photo {
	width: 250px;
	height: 313px;
	object-fit: cover;
	border-radius: 4px;
	flex-shrink: 0;
}
	
.employee-info {
	flex: 1;
	padding-left: 30px;
	display: flex;
	flex-direction: column;
}
	
.employee-name {
	font-size: 24px;
	font-weight: bold;
	color: #004899;
	margin-bottom: 10px;
}

.employee-card.rector .employee-name {
	font-size: 28px;
}
	
.employee-position {
	font-size: 18px;
	font-weight: bold;
	color: #000;
	margin-bottom: 15px;
}

.employee-regales {
	font-size: 16px;
	color: #666;
	margin-bottom: 15px;
}

.employee-contacts {
	font-size: 14px;
	color: #555;
	line-height: 1.8;
}
	
.employee-contacts p {
	margin-bottom: 8px;
}
	
.employee-contacts strong {
	color: #333;
	margin-right: 5px;
}
	
.employee-contacts a {
	color: #0066cc;
	text-decoration: none;
}

.employee-contacts a:hover {
	text-decoration: underline;
}

.email-link {
	text-decoration: none !important;
	color: #004899 !important;
	font-family: Arial, sans-serif !important;
}

.employee-buttons {
	margin-top: 1rem;
	flex-grow: 1;
	align-content: end;
	padding-bottom: 3px;
}

.employee-button-wrapper {
	text-decoration: none !important;
}

.employee-button {
	padding: 1rem;
	border-radius: 0.25rem;
	border: none;
	box-shadow: 0 2px 8px rgba(0, 72, 153, 0.5);
	color: #004899;
	text-decoration: none !important;
	font-weight: bold;
	text-align: center;
	font-family: arial;
}