/**
 * Simple Progress Feedback Styles
 */

.reading-progress {
    width: 100%;
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(176, 163, 215, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.progress-counter {
    text-align: center;
    font-size: 1rem;
    color: #b0a3d7;
    font-weight: 500;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(176, 163, 215, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #b0a3d7 0%, #7b68ee 100%);
    border-radius: 4px;
    transition: width 0.4s ease;
    width: 0%;
}

.progress-helper-text {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #b0a3d7;
    font-style: italic;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    border-top: 2px solid rgba(176, 163, 215, 0.3);
    border-bottom: 2px solid rgba(176, 163, 215, 0.3);
    background: rgba(176, 163, 215, 0.05);
    border-radius: 4px;
    animation: fadeInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .reading-progress {
        padding: 0.75rem 0;
        margin-top: 1.5rem;
    }

    .progress-counter {
        font-size: 0.9rem;
    }

    .progress-bar-container {
        height: 6px;
    }

    .progress-helper-text {
        font-size: 1rem;
        padding: 0.6rem 1rem;
        margin-top: 0.75rem;
    }
}
