.pr-894fab64-wrapper {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	width: 100%;
	margin: 0 auto;
	font-family: inherit;
}
.pr-894fab64-form-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem;
	background: #f9f9f9;
	border-radius: 12px;
}
.pr-894fab64-title {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 1rem;
	text-align: center;
}
.pr-894fab64-stars {
	display: flex;
	gap: 10px;
	margin-bottom: 1.5rem;
	cursor: pointer;
}
.pr-894fab64-star svg {
	transition: fill 0.2s ease;
}
.pr-894fab64-input-group {
	width: 100%;
	margin-bottom: 1rem;
}
.pr-894fab64-input,
.pr-894fab64-textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 1rem;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
	background: #fff;
}
.pr-894fab64-textarea {
	resize: vertical;
}
.pr-894fab64-input:focus,
.pr-894fab64-textarea:focus {
	outline: none;
	border-color: #999;
}
.pr-894fab64-guest-fields {
	width: 100%;
	display: flex;
	gap: 1rem;
}
@media (max-width: 768px) {
	.pr-894fab64-guest-fields {
		flex-direction: column;
		gap: 0;
	}
}
.pr-894fab64-actions {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
.pr-894fab64-submit {
	color: #fff;
	background-color: #00a65a; /* Default fallback */
	border: none;
	border-radius: 24px; /* Default fallback */
	padding: 0.75rem 2rem; /* Default fallback */
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}
.pr-894fab64-message {
	margin-top: 1rem;
	text-align: center;
	font-weight: 500;
}

/* Reviews List Styles */
.pr-894fab64-reviews-title {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	border-bottom: 2px solid #eee;
	padding-bottom: 0.5rem;
}
.pr-894fab64-reviews-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
.pr-894fab64-review-item {
	padding: 1.5rem;
	border: 1px solid #eee;
	border-radius: 8px;
	background: #fff;
	display: flex;
	flex-direction: column;
}
.pr-894fab64-review-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.5rem;
}
.pr-894fab64-review-author {
	font-size: 1.1rem;
}
.pr-894fab64-review-stars {
	display: flex;
	gap: 2px;
}
.pr-894fab64-review-content {
	color: #555;
	line-height: 1.6;
	margin-bottom: 0.5rem;
	flex-grow: 1;
}
.pr-894fab64-review-date {
	font-size: 0.85rem;
	color: #999;
}
.pr-894fab64-no-reviews {
	color: #777;
	font-style: italic;
}

/* Pagination Styles */
.pr-894fab64-pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
}
.pr-894fab64-pagination a,
.pr-894fab64-pagination span {
	padding: 0.5rem 1rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	text-decoration: none;
	color: #333;
	background: #fff;
	transition: all 0.2s ease;
}
.pr-894fab64-pagination span.current {
	background: #000;
	color: #fff;
	border-color: #000;
}
.pr-894fab64-pagination a:hover {
	background: #f5f5f5;
}