.pf-container-23dd2401 {
	font-family: sans-serif;
	max-width: 600px;
	margin: 0 auto;
}
.pf-container-23dd2401 * {
	box-sizing: border-box;
}
.pf-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}
.pf-col {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.pf-col-full {
	flex: 100%;
}
.pf-label {
	color: #1a3365;
	font-weight: bold;
	margin-bottom: 8px;
	text-transform: uppercase;
	font-size: 14px;
}
.pf-input {
	width: 100%;
	padding: 12px 15px;
	background-color: #e2e4ed;
	border: 1.5px solid #4a5568;
	border-radius: 4px;
	color: #2d3748;
	font-size: 16px;
}
.pf-input::placeholder {
	color: #4a5568;
}
.pf-score-box {
	border: 1.5px solid #4a5568;
	border-radius: 4px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}
.pf-team-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
}
.pf-team-name {
	color: #1a3365;
	font-weight: bold;
	margin-bottom: 10px;
	text-transform: uppercase;
}
.pf-score-input {
	text-align: center;
	width: 100%;
	max-width: 150px;
}
.pf-separator {
	color: #1a3365;
	font-size: 24px;
	margin-top: 20px;
}
.pf-submit-btn {
	width: 100%;
	background-color: #1a3365;
	color: #ffffff;
	border: none;
	padding: 15px;
	font-size: 16px;
	font-weight: bold;
	border-radius: 4px;
	cursor: pointer;
	text-transform: uppercase;
	transition: opacity 0.3s ease;
}
.pf-submit-btn:hover {
	opacity: 0.9;
}

@media (max-width: 767px) {
	.pf-row {
		flex-direction: column;
		gap: 15px;
	}
}