/* Aperçu compact des projets */
.projets-overview-compact {
    padding: 20px;
    margin: 20px 0;
}

.overview-date {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 12px;
}

.overview-progress {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar-compact {
    flex: 1;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-segments {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 1px;
    position: absolute;
    top: 0;
    left: 0;
}

.segment {
    height: 100%;
    min-width: 2px; /* Largeur minimale pour la visibilité */
}

.segment-termine { background: #158966; }
.segment-relecture { background: #8BC34A; }
.segment-encours { background: #FF9800; }
.segment-afaire { background: #D32D2D; }
.segment-annule { background: #9E9E9E; }
.segment-autre { background: #9C27B0; }

.progress-fill {
    height: 100%;
    background: #158966;
    transition: width 0.6s ease;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.progress-label-compact {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .projets-overview-compact {
        padding: 15px;
        margin: 15px 0;
    }
    
    .overview-progress {
        gap: 12px;
    }
    
    .progress-label-compact {
        font-size: 0.85rem;
    }
} 