/* Percentage Bar Styling */
.kol-mpr-percentage-bar {
	position: relative;
	height: 24px;
	background: #e5e7eb;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 8px;
}

html.dark-mode .kol-mpr-percentage-bar {
	background: #444;
}

.kol-mpr-percentage-fill {
	height: 100%;
	background: linear-gradient(90deg, #10b981, #10da85);
	transition: width 0.3s ease;
	position: relative;
}

.kol-mpr-percentage-text {
	position: absolute;
	top: 50%;
	left: 8px;
	transform: translateY(-50%);
	font-size: 12px;
	font-weight: 600;
	color: #1f2937;
	z-index: 2;
	white-space: nowrap;
}

html.dark-mode .kol-mpr-percentage-text {
	color: #e0e0e0;
}

.kol-mpr-percentage-display {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.kol-mpr-percentage-value {
	font-size: 32px;
	font-weight: 700;
	color: white;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
