/* Progress bar and counter styles */
.ctr-progress {
    margin: 15px auto;
    width: 80%;
    max-width: 500px;
}

.ctr-progress-text {
    font-family: 'Urbanist', Arial, sans-serif;
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
    text-align: left;
}

.ctr-progress-bar {
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.ctr-progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #ff8c00, #ff4500);
    border-radius: 5px;
}

.ctr-counter {
    display: block;
    font-family: 'Urbanist', Arial, sans-serif;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* Additional mobile styles */
@media screen and (max-width: 768px) {
    .ctr-progress {
        width: 100%;
    }
    
    .ctr-progress-text {
        font-size: 12px;
    }
    
    .ctr-counter {
        font-size: 12px;
    }
    
    .single-post .einstein-continue-reading .ctr-button {
        width: 100%;
        max-width: none;
        padding: 14px 40px 14px 25px;
        font-size: 18px;
    }
} 