  /**
 * PB Reading Time Calculator CSS
 *
 * @package PB_Widgets
 */

/* Main Container */
.pb-reading-time-calculator {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px; /* Limit width for clean display */
    margin: 10px 0;
    font-family: sans-serif;
}

.pb-reading-time-calculator .pb-reading-timer-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Time Display */
.pb-reading-time-display {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
    color: #454546;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.687px; /* 164.055% */
}

.pb-time-minutes {
    color: #454546;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.687px;
    margin-right: 4px;
}

.pb-time-label {
    font-weight: 400;
    color: #666;
}

/* Progress Bar Wrapper */
.pb-reading-progress-bar-wrap {
    background: #e0e0e0;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

/* The actual progress bar */
.pb-reading-progress-bar {
    height: 100%;
    width: 0%; /* Initial width, controlled by JavaScript */
    background-color: #1BBEE8; /* A nice blue color */
    transition: width 0.1s linear; /* Smooth, continuous animation */
    border-radius: 4px;
}