/* עיצוב כללי */
.spacetouch-progress-bar {
	/* background: #fafafa; */
	border-radius: 6px;
	padding: 12px 16px;
	direction: rtl;
	width: 100%;
	box-sizing: border-box;
}
.spacetouch-progress-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 8px;
}
.spacetouch-progress-title {
	font-size: 1.1em;
	font-weight: 500;
	color: #222;
}
.spacetouch-progress-percentage {
	font-size: 1.1em;
	font-weight: bold;
	color: #222;
}
.spacetouch-progress-bar-track {
	width: 100%;
	height: 16px;
	background: #ededed;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}
.spacetouch-progress-fill {
	height: 100%;
	background: #5a4ee6;
	border-radius: 8px;
	transition: width 2s cubic-bezier(.4,0,.2,1);
	width: var(--progress-width, 0%);
}
.spacetouch-progress-bar .spacetouch-progress-fill {
	animation: spacetouchLoadProgressBar 2s ease-out forwards;
}
@keyframes spacetouchLoadProgressBar {
	from { width: 0%; }
	to { width: var(--progress-width, 100%); }
}
.progress-text-row {
	display: flex;
	width: 100%;
	gap: 8px;
}
.progress-text-top-right .progress-text-row,
.progress-text-bottom-right .progress-text-row {
	justify-content: flex-end;
	text-align: right;
}
.progress-text-top-left .progress-text-row,
.progress-text-bottom-left .progress-text-row {
	justify-content: flex-start;
	text-align: left;
}
.progress-text-top-center .progress-text-row,
.progress-text-bottom-center .progress-text-row {
	justify-content: center;
	text-align: center;
} 