.ft-progress-bar {
    position: relative;
    width: 100%;
    border-radius: 50px;
    overflow: visible;
}

/* Filled part */
.ft-progress-fill {
    height: 100%; /* Height controlled by Elementor */
    border-radius: 50px;
    transition: width 0.5s ease;
}

/* Tooltip Base */
.ft-tooltip {
    position: absolute;
    bottom: 100%;              /* Stick to top of bar */
    margin-bottom: 12px;       /* Space above bar */
    transform: translateX(-50%);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 5;
}

/* Tooltip Arrow */
.ft-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
}

/* Filled Tooltip */
.ft-tooltip-filled {
    /* Background set from Elementor */
}

.ft-tooltip-filled::after {
    border-color: currentColor transparent transparent transparent;
}

/* Remaining Tooltip */
.ft-tooltip-remaining {
    right: 0;
    left: auto;
    transform: none;
}

.ft-tooltip-remaining::after {
    left: auto;
    right: 20px;
    transform: none;
}