.progress-container {
    background-color: #e0e0e0;
    border-radius: 15px;
    width: 100%;
    height: 30px;
    position: relative;
    margin: 40px 0;
}

.progress-bar {
    background-color: #4caf50; /* A common color for progress bars */
    height: 100%;
    border-radius: 15px;
    position: relative;
    transition: width 0.5s; /* Optional: smooth transition */
}

.percentage-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    line-height: 30px;
    font-weight: bold;
}

.budget-label {
    position: absolute;
    top: -20px;
    font-weight: bold;
    margin: 0 10px 10px 0; /* Add horizontal margin for spacing from edges */
}

.left {
    left: 0;
}

.right {
    right: 0;
}