.pdf-container {
	margin: 2rem 0;
}

.pdf-viewer-wrapper {
	position: relative;
	width: 100%;
	height: 1000px;
	border: 1rem solid rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	background: #f5f5f5;
	overflow: hidden;
}

.pdf-viewer-wrapper iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.pdf-fallback {
	padding: 2rem;
	text-align: center;
	background: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.pdf-error-message {
	margin-bottom: 1.5rem;
	color: #666;
	font-size: 1.1rem;
}

.pdf-download-button,
.pdf-download-link,
.pdf-open-link {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	margin: 0 0.5rem;
	background-color: #03a3bb;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	transition: background-color 0.3s ease;
}

.pdf-download-button:hover,
.pdf-download-link:hover,
.pdf-open-link:hover {
	background-color: #028a9e;
	color: #fff;
	text-decoration: none;
}

.pdf-actions {
	margin-top: 1rem;
	text-align: center;
}

.pdf-download-button {
	background-color: #e71c39;
}

.pdf-download-button:hover {
	background-color: #c5162f;
}

@media (max-width: 768px) {
	.pdf-viewer-wrapper {
		height: 600px;
	}

	.pdf-actions {
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
	}

	.pdf-download-link,
	.pdf-open-link {
		width: 100%;
		margin: 0;
	}
}
