/**
 * Senior Proofs Modal Styles
 * Used for displaying proof images in a modal overlay
 */

/* Proofs Modal Styles */
.proofs-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 10000;
	overflow: hidden;
}

.proofs-modal.active {
	display: block;
}

.proofs-modal-content {
	position: relative;
	width: 95%;
	max-width: 1600px;
	height: 90vh;
	margin: 2vh auto;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.proofs-modal-header {
	padding: 15px 20px;
	background: #000;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.proofs-modal-header h3 {
	margin: 0;
	font-size: 18px;
}

.proofs-modal-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 30px;
	line-height: 1;
}

.proofs-modal-close:hover {
	color: #ccc;
}

.proofs-modal-body {
	flex: 1;
	overflow: hidden;
	padding: 0;
}

.proofs-modal-body iframe {
	width: 100%;
	height: 100%;
	border: none;
}
