/* Fullscreen Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.9);
}

.modal-content {
	margin: auto;
	display: block;
	max-width: 90%;
	max-height: 90%;
}

/* Info Modal */
.info-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.5);
}

.info-modal-content {
	background-color: #fefefe;
	margin: 5% auto;
	padding: 0;
	border: 1px solid #888;
	border-radius: 8px;
	width: 90%;
	max-width: 900px;
	max-height: 80vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	overflow: hidden;
}

.info-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #e6e6e6;
	background: #f8f9fa;
	border-radius: 8px 8px 0 0;
	flex-shrink: 0;
}

.info-modal-header h2 {
	margin: 0;
	font-size: 1.5rem;
	color: #222;
	flex-grow: 1;
}

.info-modal-close {
	background: none;
	border: none;
	font-size: 28px;
	font-weight: bold;
	color: #888;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.info-modal-close:hover {
	color: #222;
	background: #e9ecef;
}

.info-modal-body {
	padding: 20px;
	overflow-y: auto;
	flex: 1;
	border-radius: 0 0 8px 8px;
}

.info-modal-body section {
	margin-bottom: 20px;
}

.info-modal-body section:last-child {
	margin-bottom: 0;
}

.info-modal-body h3 {
	margin: 15px 0 10px 0;
	color: #0b6efd;
	font-size: 1.1rem;
}

.info-modal-body p {
	margin: 0 0 10px 0;
	line-height: 1.6;
	color: #555;
}

.info-modal-body ul {
	margin: 10px 0;
	padding-left: 20px;
	line-height: 1.8;
}

.info-modal-body li {
	color: #555;
	margin-bottom: 8px;
}

.info-modal-body a {
	color: #0b6efd;
	text-decoration: none;
}

.info-modal-body a:hover {
	text-decoration: underline;
}

.institutions-container {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 15px;
	align-items: center;
	flex-wrap: wrap;
}

.institution {
	display: flex;
	align-items: center;
	justify-content: center;
}

.institution a {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease;
}

.institution a:hover {
	transform: scale(1.05);
	text-decoration: none;
}

.institution-logo {
	max-height: 80px;
	max-width: 150px;
	width: auto;
	height: auto;
}

.close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
}

.close:hover,
.close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}
