.project-status {
    margin-bottom: 1rem;
    font-size: 1.1em;
}

.project-status i {
    margin-right: 0.5rem;
}

.progress-bar {
    height: 4px;
    background-color: #4CAF50;
    margin: 1rem 0;
    transition: width 0.3s ease-in-out;
}

.progress-bar[style*="width: 0%"] {
    background-color: #f44336;
}

.progress-bar[style*="width: 20%"] {
    background-color: #ff9800;
}

.progress-bar[style*="width: 40%"] {
    background-color: #ffeb3b;
}

.progress-bar[style*="width: 90%"] {
    background-color: #2196F3;
}

.progress-bar[style*="width: 100%"] {
    background-color: #4CAF50;
}

.blinkdiv {
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.error {
    color: #f44336;
    padding: 1rem;
    background-color: #ffebee;
    border-radius: 4px;
    margin: 1rem 0;
}

.eta, .start-date {
    color: #666;
    font-size: 0.9em;
    margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .project-status {
        font-size: 1em;
    }
    
    .progress-bar {
        height: 3px;
    }
} 