.pdiv {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
.progress-container {
    position: relative;
    width: 70%;
    height: 50px;
    background-color: #e0e0e0;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #A50C00;
    transition: width 1s ease-in-out;
}
.progress-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #A50C00;
    font-size: 1.5em;
    font-weight: bold;
    pointer-events: none;
    font-family: "inter";
}