/* ProgressBarComponent styles */

.framework-progressbar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.framework-progressbar-container {
    background: rgb(from var(--color-secondary-accent) r g b / 0.2);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    min-height: 8px;
}

.framework-progressbar-fill {
    height: 100%;
    /* background is set dynamically in JavaScript with gradient */
    transition: width 0.3s ease;
    border-radius: 3px;
    min-height: 8px;
}

.framework-progressbar-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: var(--color-text-light);
    font-weight: 600;
    pointer-events: none;
    z-index: 1;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}
