
.show-pdf-btn {
	background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
	color: white;
	border: none;
	padding: 18px 45px;
	border-radius: 50px;
	font-size: 1.3rem;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
	box-shadow: 0 10px 25px rgba(37, 117, 252, 0.4);
}

.show-pdf-btn:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 15px 30px rgba(37, 117, 252, 0.6);
}

.show-pdf-btn:active {
	transform: translateY(1px);
}

/* PDFµ¯´°ÑùÊ½ */
.pdf-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1000;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.pdf-modal.active {
	display: flex;
	opacity: 1;
}

.pdf-modal-content {
	background: white;
	border-radius: 15px;
	width: 90%;
	max-width: 1024px;
	max-height: 90vh;
	overflow: hidden;
	position: relative;
	transform: scale(0.9);
	transition: transform 0.4s ease;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.pdf-modal.active .pdf-modal-content {
	transform: scale(1);
}

.pdf-controls {
	padding: 15px 20px;
	background: #f8f9fa;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #eaeaea;
}

.pdf-container {
	overflow: auto;
	width: 800px;
	height:430px;
	justify-content: center;
	align-items: flex-start;
	border-bottom: 1px solid #eaeaea;
	background-color: #fff;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
	border-radius: 8px;
}

#pdf-viewer {
	position: relative;
	background: white;
	 box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}
#pdf-viewer canvas {
	  width:100% !importent;

      display: block;
      margin: 0 auto;
      /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
    }


