.stacked-progress {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #d0d0d0;
}

.progress-bar.base {
    position: relative;
    width: 100%;
    height: 16px;
    background: #2e2e2e;
    border-radius: 8px;
    overflow: hidden;
}

/* Внесено */
.bar.contributed {
    position: absolute;
    left: 0;
    top: 0;
    height: 16px;
    background: #4caf50cc;
    border-radius: 8px;
}

/* Потрачено (внутри внесённого) */
.bar.spent {
    position: absolute;
    left: 0;
    top: 0;
    height: 6px;
    margin-top: 5px;
    background: #2196f3;
    border-radius: 8px;
}