.trad-progress-milestone-container {
    width: 100%;
}

.trad-progress-milestone {
    background-color: #f4f4f5;
    padding: 20px 0;
    border-radius: 5px;
}
.trad-progress-milestone-progress{
    width: 100%;
    height: 100%;
    transition: width .5s ease;
    position: relative;
    background-color: rgb(17, 135, 214);
    border-radius: 15px;
}

.trad-progress-milestone-progress-bar {
    background-color: azure;
    position: relative;
    border-radius: 15px;
    overflow: visible;
    margin-bottom: 10px;
}

.trad-progress-milestone-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

.trad-progress-milestone-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.trad-progress-milestone-description-icon {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}


.trad-progress-milestone-info {
    color: #666;
    font-size: 14px;
    margin-left: 10px; 
}
/* Bubble percentage */
.trad-progress-milestone-value.bubble {
    position: absolute;
    top: -33px;
    left: 99%;
    background: rgb(17, 135, 214);
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 700;
    color: #444;
    font-size: 16px;
    white-space: nowrap;
    z-index: 1;
}

/* Small arrow under the bubble */
.trad-progress-milestone-value-arrow {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid rgb(17, 135, 214);
    z-index: 2;
}

/* Inside percentage (existing behavior) */
.trad-progress-milestone-value.inside {
    color: #fff;
}
