/* Overall progress bar container */
.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #ddd; /* Background color for the bar */
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    display: flex;
}

/* Progress fill area */
.progress-fill {
    height: 100%;
    background-color: #4CAF50; /* Fill color */
    width: 0%; /* Initially 0% */
    transition: width 0.5s ease-in-out; /* Smooth transition for the fill */
}




.ribbon{
    font-size: 13px;
    background-color: #fcba08;
    width: 25%;
    padding: 4px 10px;
    border: 1px solid #DDDDDD;
    border-bottom: unset;
    border-radius: 0px 0px 12px 12px;
}
.tooltip-text {
    position: relative;
    cursor: pointer;
}

.tooltip-text .tooltip-popup {
    visibility: hidden;
    background-color: #003b95;
    color: #fff;
    /*text-align: center;*/
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 110%;
    transform: translateX(-100%);
    width: 500px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-text:hover .tooltip-popup {
    visibility: visible;
    opacity: 1;
}

.tooltip-popup::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 15px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #003b95 transparent transparent transparent;
}