/* Outer progress container */
.physikit-progress {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Line rail */
.physikit-progress-bar {
    position: relative;
    flex: 1;
    height: 8px;
    border-radius: 5px;
    background-color: #f0f0f0;
    overflow: hidden;
}

/* Line fill */
.physikit-progress-fill {
    background: var(--theme-palette-color-1);
    height: 100%;
    max-width: 0%;
    transition: max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Percentage text */
.physikit-progress-label {
    margin-left: 12px;
    font-size: 14px;
    color: #333;
    min-width: 40px;
    text-align: center;
}