#srp-progress-container {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 999999;
    background: transparent;
    pointer-events: none;
    transition: all 0.3s ease;
}

#srp-progress-bar {
    width: 0%;
    height: 4px;
    background: #FF5722;
    transition: width 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: width;
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.5);
}

#srp-reading-time {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 20px;
    pointer-events: auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transform: translateY(-50%);
    top: 50%;
    animation: srpFadeIn 0.5s ease forwards;
    white-space: nowrap;
}

#srp-time-icon {
    font-size: 1.1em;
}

@keyframes srpFadeIn {
    from { opacity: 0; transform: translateY(-30%) scale(0.9); }
    to { opacity: 1; transform: translateY(-50%) scale(1); }
}

@media (max-width: 768px) {
    #srp-reading-time {
        font-size: 10px;
        padding: 2px 8px;
        right: 10px;
    }
}

.srp-top { top: 0; }
.srp-bottom { bottom: 0; }