/*** Override easyadmin ***/
    /* Permet aux boutons "retour à la liste", "sauvegarder" et "supprimer" d'être responsive */
    .form-actions {
        display: block;
    }
    
    .form-action-search .form-widget {
        flex: inherit;
    }

    /* Permet de gérer le responsive sur le header content de LIST (barre de recherche, filtre et bouton d'ajout) */
    .content-header input[type=search] {
        width: 100% !important;
    }
    
    .table-card-deck img {
        max-width: 100px;
    }
    
    /* Pour les devices small */
    @media (max-width: 576px) { 
    
        .content-header .global-actions {
            margin: 0px;
        }
        .content-header > div:not(#modal-filters) {
            display: block !important;
        }
        
        /* On transforme le bouton "Créer : Entity" en "+" */
        .action-new {
            font-size: 0;
        }
        .action-new::after {
            content: "+";
            font-size: 14px;
            font-weight: bold;
        }
        
        .action-filters-button {
            font-size: 0;
        }
        .action-filters-button::after {
            font-family: "Font Awesome 5 Free";
            content: "\f0b0";
            font-size: 14px;
            font-weight: bold;
        }
    }
    
    /* Pour les devices qui sont medium ou plus */
    @media (min-width: 576px) { 
        /* À remplir */
    }
/*** /Override easyadmin ***/
