/**
 * @file plugins/generic/epubViewer/css/epubViewer.css
 *
 * Copyright (c) 2010-2021 Lepidus Tecnologia
 * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
 *
 * Styles for EPUB Viewer
 */

#epub-viewer {
	width: 100%;
	height: 97vh;
	position: relative;
}

#epub-area {
	width: 100%;
	height: 100%;
}

#epub-controls {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.7);
	padding: 10px 20px;
	border-radius: 5px;
	z-index: 1000;
}

#epub-controls button {
	background: #fff;
	border: none;
	padding: 8px 16px;
	margin: 0 5px;
	cursor: pointer;
	border-radius: 3px;
	font-size: 14px;
}

#epub-controls button:hover {
	background: #f0f0f0;
}

#epub-controls button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
