/* ===================================
   Progress Bar Styles (buildings.html)
   =================================== */

/* Progress Bar - Modern Design */
.progress-container {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 100%;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 28px;
    background-color: var(--bg-light);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
}

.progress-fill {
    height: 100%;
   background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 14px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-green);
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive Design - Progress */
@media (max-width: 768px) {
    .progress-container {
        margin-top: 1.25rem;
    }

    .progress-label {
        font-size: 0.85rem;
    }

    .progress-bar {
        height: 24px;
    }

    .progress-fill {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .progress-bar {
        height: 20px;
    }

    .progress-fill {
        font-size: 0.7rem;
    }
}