/* Soft Grey Premium Progress Bar */
body {
    font-family: Arial, sans-serif;
    background: #f4f4f5;
}

/* Outer bar */
.barfiller {
    width: 100%;
    height: 14px;
    background: #f9f9f9;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    border: 1px solid #dddddf;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.08);
}

/* Filled part */
.barfiller .fill {
    display: block;
    position: relative;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #646266, #858588);
    border-radius: 10px;
    transition: width 1.2s ease-in-out;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* % text wrapper */
.barfiller .tipWrap {
    position: absolute;
    top: -28px;
    left: 0;
    width: 100%;
    text-align: left;
    pointer-events: none;
}

/* % text bubble */
.barfiller .tip {
    display: inline-block;
    background: #646266;
    color: #ffffff;
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 5px;
    position: absolute;
    top: -5px;
    transform: translateX(-50%);
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
