/* Progress bar styles - theme aware */
.dark #p50-bar, .dark #p75-bar, .dark #p95-bar, .dark #p99-bar {
    opacity: 0.9;
    box-shadow: 0 0 8px 2px rgba(0,0,0,0.2);
    transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
    min-width: 2%;
    max-width: 100%;
}

html:not(.dark) #p50-bar, html:not(.dark) #p75-bar, html:not(.dark) #p95-bar, html:not(.dark) #p99-bar {
    opacity: 0.85;
    box-shadow: 0 0 4px 1px rgba(0,0,0,0.08);
    transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
    min-width: 2%;
    max-width: 100%;
}

#p50-bar { background-color: #6366f1 !important; }
#p75-bar { background-color: #10b981 !important; }
#p95-bar { background-color: #f59e0b !important; }
#p99-bar { background-color: #ef4444 !important; }
