/*
==========================================================================
    Component: Reusable Progress Bar
==========================================================================
*/

.progress-bar-component {
    width: 100%;
    margin-bottom: 1.5em;
}

.progress-row {
    display: flex;
    justify-content: space-between;
    gap: 1.5em;
}

.progress-value {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    text-align: right;
    color: #444444;
    white-space: nowrap;
    min-width: 80px;
}

.progress-bar-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.progress-bar-track {
    background-color: #e6e6e6;
    height: 10px;
    width: 100%;
    overflow: hidden;
}

.progress-bar-fill {
    background-color: #595959;
    height: 100%;
    width: 0%;
    transition: width 1.2s ease-out;
}

.progress-label {
    padding-top: 0.2em;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #666666;
}

/* --- Responsive Styles --- */
@media (max-width: 767px) {
    .progress-value {
        font-size: 1.8rem;
        min-width: 70px;
    }
    
    .progress-row {
        gap: 1em;
    }
}

@media (min-width: 768px) and (max-width: 1141px) {
    .progress-value {
        font-size: 1.9rem;
        min-width: 75px;
    }
    
    .progress-row {
        gap: 1.2em;
    }
}