.intervention-detail {
    margin-bottom: 15px;
}

.detail-label {
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.detail-value {
    padding: 8px 12px;
    border-radius: 6px;
    background-color: var(--light-bg);
    font-weight: 500;
}

.action-buttons .btn {
    margin-right: 8px;
    margin-bottom: 8px;
}

.status-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 20px 0;
    width: 100%;
    padding: 0 10px;
}

/* Ligne de base de la timeline */
.status-timeline::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e6e6e6;
    z-index: 1;
}

/* Style de base pour chaque étape */
.status-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

/* Style de base pour les bulles de statut */
.status-bubble {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    position: relative;
    color: white;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

/* Style pour les labels de statut */
.status-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: normal;
    margin-top: 5px;
}

/* Style pour les icônes dans les bulles */
.status-bubble i {
    font-size: 14px;
    color: white;
}

/* Étapes déjà passées - vert */
.status-step.completed .status-bubble {
    background-color: #4CAF50 !important;
}

/* Étape actuelle - bleu */
.status-step.current .status-bubble {
    background-color: #2196F3 !important;
}

/* Étapes futures - orange */
.status-step.pending .status-bubble {
    background-color: #FF9800 !important;
}

/* Style pour le label de l'étape actuelle uniquement */
.status-step.current .status-label {
    font-weight: bold;
}

/* Style spécifique pour le statut terminé quand il est actuel - vert de succès */
.status-step.completed.current .status-bubble {
    background-color: #2ecc71 !important;
}

/* Style spécifique pour le statut archivé quand il est actuel - gris */
.status-step.archived.current .status-bubble {
    background-color: #95a5a6 !important;
}