body {
    background-color: blue;
}

/* Bouton "vider la sélection" des listes déroulantes (Tom Select) en style btn-danger */
.plugin-clear_button .clear-button {
    background-color: #f1707a !important;
    color: #fff;
    width: 1.25rem;
    height: 1.25rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 0;
    padding-bottom: 0.35em;
    box-sizing: border-box;
}

.plugin-clear_button:not(.disabled):hover .clear-button {
    background-color: var(--bs-danger, #dc3545) !important;
}

.project-list-container {
    max-height: 400px;
    /* Limite la hauteur, ajustez selon vos besoins */
    overflow-y: auto;
    /* Active le défilement vertical */
    padding: 10px;
    /* Optionnel : ajoute un peu d'espace autour du contenu */
    border: 1px solid #ccc;
    /* Optionnel : ajoute une bordure pour une meilleure visibilité */
    background-color: black;
    /* Optionnel : arrière-plan */
}