.pdf-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.pdf-modal-content {
	background-color: white;
	border-radius: 8px;
	width: 95%;
	height: 95%;
	max-width: 1400px;
	position: relative;
	display: flex;
	flex-direction: column;
}

.pdf-modal-header {
	padding: 15px 20px;
	background-color: #f8f9fa;
	border-bottom: 1px solid #dee2e6;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 8px 8px 0 0;
}

.pdf-modal-title {
	font-size: 18px;
	font-weight: bold;
	color: #333;
}

.pdf-close-btn {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #666;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.3s;
}

.pdf-close-btn:hover {
	background-color: #e9ecef;
	color: #333;
}

.pdf-modal-body {
	flex: 1;
	overflow: hidden;
	position: relative;
	display: flex;
}

.pdf-iframe {
	flex: 1;
	border: none;
	width: 100%;
	height: 100%;
}

.pdf-scroll-container {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 10;
}

.pdf-scroll-btn {
	width: 40px;
	height: 40px;
	background-color: white;
	border: 1px solid #ddd;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	transition: all 0.3s;
}

.pdf-scroll-btn:hover {
	background-color: #f8f9fa;
	box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.pdf-loading {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	font-size: 16px;
	color: #666;
	flex: 1;
}

.pdf-error {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	font-size: 16px;
	color: #d32f2f;
	text-align: center;
	padding: 20px;
}

.pdf-retry-btn {
	margin-top: 15px;
	padding: 10px 20px;
	background-color: #1976d2;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
}

.pdf-retry-btn:hover {
	background-color: #1565c0;
}

.required {
	display: inline-block !important;
	color: red;
}