﻿.intervention-item {
    background: rgba(0,0,0,0.04);
    padding: 0.6rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

    /* Réparée (vert) */
    .intervention-item.status-done {
        border-left: 4px solid #10b981;
        box-shadow: 0 0 8px rgba(16, 185, 129, 0.25);
    }

    /* Rendue (bleu) */
    .intervention-item.status-returned {
        border-left: 4px solid #3b82f6;
        box-shadow: 0 0 8px rgba(59, 130, 246, 0.25);
    }

    /* Autres statuts (rouge) */
    .intervention-item.status-other {
        border-left: 4px solid #ef4444;
        box-shadow: 0 0 8px rgba(239, 68, 68, 0.25);
    }