/**
 * FreedomReader Content Enhancements Styles
 */

/* Reading progress bar */
#fr-reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 3px;
	background: linear-gradient(90deg, #007cba, #00a0d2);
	z-index: 9999;
	transition: width 0.1s ease;
}

/* Reading time display */
.fr-reading-time {
	font-size: 14px;
	color: #666;
	margin-bottom: 15px;
	padding: 8px 12px;
	background: #f8f9fa;
	border-radius: 4px;
	display: inline-block;
}

/* Inline notes */
.fr-inline-note {
	position: relative;
}

.fr-note-trigger {
	color: #007cba;
	cursor: pointer;
	font-weight: bold;
	margin-left: 2px;
}

.fr-note-content {
	display: none;
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: #333;
	color: #fff;
	padding: 8px 12px;
	border-radius: 4px;
	font-size: 12px;
	white-space: nowrap;
	z-index: 1000;
	max-width: 300px;
	white-space: normal;
}

.fr-note-content:before {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: #333;
}

/* Ask author section */
.fr-ask-author-section {
	margin: 30px 0;
	text-align: center;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 6px;
}

.fr-ask-author-btn {
	background: #007cba;
	color: #fff;
	border: none;
	padding: 12px 24px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: background 0.3s ease;
}

.fr-ask-author-btn:hover {
	background: #005a87;
}

/* Auto links */
.fr-auto-link {
	color: #007cba;
	text-decoration: underline;
}

.fr-auto-link:hover {
	color: #005a87;
}

/* Email unlock form */
.fr-email-unlock-form {
	background: #fff3cd;
	border: 1px solid #ffeaa7;
	border-radius: 6px;
	padding: 20px;
	margin: 20px 0;
	text-align: center;
}

.fr-email-unlock-form h3 {
	margin: 0 0 15px 0;
	color: #856404;
}

.fr-email-unlock-form input[type="email"] {
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	width: 250px;
	margin-right: 10px;
}

.fr-email-unlock-form button {
	background: #28a745;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.fr-email-unlock-form button:hover {
	background: #218838;
}

/* Responsive design */
@media (max-width: 768px) {
	.fr-email-unlock-form input[type="email"] {
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
	
	.fr-note-content {
		position: relative;
		bottom: auto;
		left: auto;
		transform: none;
		display: block;
		margin-top: 10px;
		white-space: normal;
	}
	
	.fr-note-content:before {
		display: none;
	}
}
