/* Progress panel styles */
.progress-statistics {
    padding: 10px 15px;
    font-size: 14px;
}

.progress-statistics h3 {
    margin-top: 5px;
    margin-bottom: 15px;
}

.progress-statistics h4 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.progress-summary {
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
}

.progress-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.progress-circle-container {
    flex: 0 0 auto;
}

.progress-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(#4CAF50 0%, #E0E0E0 0%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.progress-circle-inner {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.progress-details {
    flex: 1;
    min-width: 200px;
}

.timeline-container {
    margin-top: 15px;
    min-height: 250px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.timeline-granularity {
    font-size: 14px;
    font-weight: normal;
    color: #666;
    margin-left: 10px;
}

#progress-timeline {
    width: 100%;
    height: 250px;
}

#no-data-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
    font-style: italic;
}
