.progress-section {
    width: 100%;
    padding: 20px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

.progress-bar-container {
    width: 80%;
    background-color: #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    margin: 10px 0;
}

.progress-bar {
    height: 20px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    width: 0;
    border-radius: 25px;
    transition: width 2s ease-in-out;
}

.progress-label {
    margin-top: 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

.progress-percentage {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
}

.results {
    padding: 20px;
}

.progress-bar-container {
    width: 80%;
    background-color: #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    margin: 20px auto;
}

.progress-bar {
    height: 20px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    width: 43%; /* Initially set to 43% */
    border-radius: 25px;
    transition: width 2s ease-in-out;
}

.progress-label {
    margin-top: 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

.progress-percentage {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
    z-index: 2;
}
