@charset "utf-8";

.modal {
	position: fixed;
	z-index: 1;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	width: calc(100% - 1200px);
	padding-top: 10px;
	padding-right: 600px;
	padding-bottom: 0px;
	padding-left: 600px;
}

.modal-content {
	background-color: rgb(167, 168, 165);
	height: auto;
	justify-content: center;
	align-items: center;
	border-radius: 15px;
	width: auto;
	max-height: 100vh;
	max-width: 700px;
}

#pdf-container {
	width: auto;
	height: auto;
	max-height: 80vh;
	max-width: 90vw;
	overflow: auto;
}

.close {
	color: #aaa;
	float: right;
	font-size: 24px;
	font-weight: bold;
	padding: 10px;
	border-radius: 15px;
	border-color: #aaa;
}

.modal-header {
	background-image: linear-gradient(to right, #89c989, #013d01);
	padding: 20px;
	height: 40%;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.modal-body {
	padding: 20px;
}

.modal-header-title {
	font-size: 40px;
	font-weight: bold;
	padding: 10px;
	width: auto;
	color: white;
	font-family: 'Times New Roman', serif;
}

.modal-footer {
	background-image: linear-gradient(to right, #013d01, #a7faa7);
	height: 15px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

.close:hover, .close:focus {
	color: red;
	text-decoration: none;
	cursor: pointer;
	border-color: red;
}

.modal-navigation-bar {
	height: 20px;
	background-color: rgb(225, 227, 220);
	padding: 10px;
	text-align: center;
}

.pagePrev {
	color: black;
	float: left;
	padding: 5px;
	border-radius: 10px;
	border-color: black;
}

.pagePrev:hover, .pagePrev:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
	border-color: black;
	background-color: white;
}

.pagePrev:disabled {
	color: #ccc;
	border-color: #ccc;
	cursor: not-allowed; 
}

.pageNext {
	color: black;
	float: right;
	padding: 5px;
	border-radius: 10px;
	border-color: black;
}

.pageNext:hover, .pageNext:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
	border-color: black;
	background-color: white;
}

.pageNext:disabled {
	color: #ccc;
	border-color: #ccc;
	cursor: not-allowed;
}

.page-zoom {
	color: black;
	padding: 2px;
	border-radius: 5px;
	border-color: black;
	width: 40px;
	font-size: 15px;
	font-weight: bold;
}

.page-zoom:hover, .page-zoom:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
	border-color: black;
	background-color: white;
}

.page-zoom:disabled {
	color: #ccc;
	border-color: #ccc;
	cursor: not-allowed;
}

.page-zoom-ratio {
	color: black;
	padding: 2px;
	border: none;
	border-radius: 5px;
	border-color: black;
	width: 45px;
	font-size: 15px;
	font-weight: bold;
	background-color: white;
}