.ppb-1836-wrapper {
	width: 100%;
	font-family: inherit;
    max-width: 400px; /* Optional: Constrain width for better look as in image */
}

.ppb-1836-top-info {
	margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.ppb-1836-main-amount {
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

.ppb-1836-goal-info {
    font-size: 14px;
    color: #888;
}

.ppb-1836-bar-container {
    position: relative;
    padding: 5px 0; /* Space for the divider to overflow */
    margin-bottom: 8px;
}

.ppb-1836-track {
	width: 100%;
	height: 6px;
	background-color: #d3d3d3;
	border-radius: 3px;
	overflow: hidden;
}

.ppb-1836-progress {
	height: 100%;
	background-color: #333;
	border-radius: 3px 0 0 3px;
	transition: width 0.5s ease-in-out;
}

.ppb-1836-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #000;
    transform: translateX(-50%);
    z-index: 2;
}


.ppb-1836-bottom-labels {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
    color: #888;
}

.ppb-1836-current-label {
    text-align: left;
}

.ppb-1836-goal-label {
    text-align: right;
}