.pfs-scorecard-container {
	max-width: 600px;
	margin: 0 auto;
	font-family: sans-serif;
	background: #f9f9f9;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.pfs-progress-bar-container {
	width: 100%;
	background: #e0e0e0;
	height: 10px;
	border-radius: 5px;
	margin-bottom: 20px;
	overflow: hidden;
}
.pfs-progress-bar {
	height: 100%;
	background: #FF0E80;
	transition: width 0.3s ease;
}
.pfs-question-block {
	text-align: center;
}
.pfs-question-text {
	font-size: 20px;
	margin-bottom: 20px;
}
.pfs-rating-options {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 30px;
}
.pfs-rating-label input[type="radio"] {
	display: none;
}
.pfs-rating-btn {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #fff;
	border: 2px solid #FF0E80;
	color: #FF0E80;
	border-radius: 50%;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.2s ease;
}
.pfs-rating-label input[type="radio"]:checked + .pfs-rating-btn {
	background: #FF0E80;
	color: #fff;
}
.pfs-btn {
	background: #FF0E80;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}
.pfs-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
}
.pfs-form-group {
	margin-bottom: 15px;
	text-align: left;
}
.pfs-form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}
.pfs-form-group input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.pfs-success-message {
	background: #d4edda;
	color: #155724;
	padding: 15px;
	border-radius: 4px;
	margin-bottom: 20px;
	text-align: center;
}
.pfs-loading {
	margin-top: 15px;
	text-align: center;
	color: #666;
}
