.abvg-container {
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	background-color: #ffffff;
	border-radius: 16px;
	padding: 2rem 2.5rem;
	max-width: 860px;
	margin: 2rem auto;
	box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.15);
	border: 1px solid #e2e8f0;
}

.abvg-header {
	text-align: center;
	margin-bottom: 2rem;
}

.abvg-title {
	font-size: 1.85rem;
	font-weight: 700;
	color: #1a202c;
	margin: 0 0 0.5rem 0;
}

.abvg-subtitle {
	font-size: 1rem;
	color: #4a5568;
	margin: 0;
}

.abvg-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.abvg-input-wrapper {
	position: relative;
}

.abvg-input-icon {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: #a0aec0;
}

.abvg-input {
	width: 100%;
	padding: 0.875rem 1rem 0.875rem 3rem;
	border: 1px solid #cbd5e0;
	border-radius: 8px;
	font-size: 1rem;
	color: #2d3748;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.abvg-input:focus {
	outline: none;
	border-color: #10b981;
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.35);
}

.abvg-input::placeholder {
	color: #a0aec0;
}

.abvg-filter-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1rem;
}

.abvg-field-group {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	font-size: 0.9rem;
	color: #475569;
}

.abvg-select {
	border: 1px solid #cbd5e0;
	border-radius: 8px;
	padding: 0.6rem 0.75rem;
	font-size: 0.95rem;
	color: #1f2937;
	background-color: #fff;
}

.abvg-select:focus {
	outline: none;
	border-color: #10b981;
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.abvg-filters-note {
	font-size: 0.85rem;
	color: #64748b;
	margin: -0.25rem 0 0 0;
}

.abvg-button {
	background-color: #10b981;
	color: #ffffff;
	font-weight: 600;
	font-size: 1rem;
	padding: 0.875rem 1.5rem;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.abvg-button:hover {
	background-color: #059669;
}

.abvg-button:disabled {
	background-color: #cbd5e0;
	cursor: not-allowed;
}

.abvg-results-wrapper {
	margin-top: 2rem;
}

.abvg-loading {
	text-align: center;
	color: #4a5568;
}

.abvg-spinner {
	border: 4px solid rgba(0, 0, 0, 0.08);
	border-left-color: #10b981;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	animation: apw-spin 1s linear infinite;
	margin: 0 auto 1rem auto;
}

@keyframes apw-spin {
	from {
		transform: rotate(0);
	}

	to {
		transform: rotate(360deg);
	}
}

.abvg-error {
	background-color: #fff5f5;
	color: #c53030;
	border: 1px solid #fed7d7;
	padding: 1rem;
	border-radius: 8px;
	text-align: center;
}

.abvg-results-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	animation: apw-fade-in 0.4s ease;
}

@keyframes apw-fade-in {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.abvg-result-item {
	background-color: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 1.5rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.abvg-result-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.1);
}

.abvg-verse-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 0.75rem;
}

.abvg-verse-body {
	background-color: #111827;
	color: #f7fafc;
	border-radius: 8px;
	padding: 1rem 1.25rem;
	font-family: 'Georgia', 'Times New Roman', serif;
	font-size: 1rem;
	line-height: 1.6;
	white-space: pre-wrap;
	margin-bottom: 1rem;
	position: relative;
	cursor: pointer;
	border: 1px solid #0f172a;
}

.abvg-verse-body:hover {
	background-color: #0f172a;
}

.abvg-copy-indicator {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	background-color: #10b981;
	color: #ffffff;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	font-size: 0.75rem;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.abvg-copy-indicator.is-visible {
	opacity: 1;
}

.abvg-explanation {
	color: #4b5563;
	font-size: 0.95rem;
	line-height: 1.55;
}

@media (max-width: 640px) {
	.abvg-container {
		padding: 1.5rem;
		margin: 1.5rem;
	}
}
