.score-container {
background:#ffffff;
border-radius:16px;
overflow:visible;
box-shadow:0 4px 18px rgba(0,0,0,0.12);
border:1px solid #dddddd;
width:90%;
min-width:260px;
margin:20px;
}

.score-header {
	background: #2e4672;
	color: #f6ce00;
	padding: 16px 40px;
	font-size: 28px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	border-radius: 16px 16px 0 0
}

.score-etappe {
	background: #f2f2f2;
	color: #2e4672;
	padding: 16px 40px;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	border-bottom: 1px solid #ccc
}

.score-content {
	padding: 24px 22px
}

.score-item {
	margin-bottom: 24px
}

.score-item:last-child {
	margin-bottom: 0
}

.score-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 700;
	color: #2e4672;
	gap: 15px
}

.score-label {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px
}

.score-info {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #2e4672;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center
}

.score-tooltip {
	position: absolute;
	left: 0;
	top: 32px;
	width: 250px;
	background: #2e4672;
	color: #fff;
	padding: 14px 16px;
	border-radius: 12px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
	font-size: 14px;
	line-height: 1.5;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all .2s ease;
	z-index: 100;
	pointer-events: none
}

.score-tooltip strong {
	display: block;
	color: #f6ce00;
	font-size: 13px;
	margin-bottom: 6px
}

.score-tooltip:before {
	content: '';
	position: absolute;
	top: -8px;
	left: 18px;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #2e4672
}

.score-label:hover .score-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateY(0)
}

.score-value {
	font-size: 15px;
	color: #2e4672;
	white-space: nowrap
}

.score-bar {
	width: 100%;
	height: 16px;
	background: #e8e8e8;
	border-radius: 999px;
	overflow: hidden
}

.score-fill {
	height: 100%;
	background: #f6ce00;
	border-radius: 999px
}
