/**
 * FreedomReader Settings Page Styles
 */

/* Keyword management styles */
.fr-keyword-row {
	margin-bottom: 10px;
	display: flex;
	gap: 10px;
	align-items: center;
}

.fr-keyword-row input[type="text"] {
	flex: 2;
}

.fr-keyword-row input[type="number"] {
	flex: 1;
	max-width: 100px;
}

/* Settings tabs styles */
.fr-settings-tabs {
	margin-top: 20px;
}

.fr-tab-content {
	display: none;
	padding: 20px 0;
}

.fr-tab-content.active {
	display: block;
}

.fr-plan-row {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
	align-items: center;
}

.fr-plan-row input,
.fr-plan-row select {
	flex: 1;
}

.fr-plan-row .button {
	flex: none;
}

.fr-paypal-help {
	background: #f9f9f9;
	border: 1px solid #ddd;
	padding: 15px;
	margin: 15px 0;
	border-radius: 4px;
}

.fr-paypal-help h4 {
	margin-top: 0;
}

.fr-paypal-help ol {
	margin-left: 20px;
}

/* Performance check animation */
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Responsive design */
@media (max-width: 768px) {
	.fr-keyword-row,
	.fr-plan-row {
		flex-direction: column;
		align-items: stretch;
	}

	.fr-keyword-row input[type="number"] {
		max-width: none;
	}
}
