/* ===============================
   Todo CSS
   =============================== */
/* Liste de tags */
ul.tag-list {
    list-style: none;
    padding: 0;
}

ul.tag-list li {
    background-color: #f9f9f9;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

ul.tag-list li span {
    flex: 1;
    text-align: left;
}

.btn-logo {
    display: inline-flex;
    width: 2rem;
    padding: 0.3rem;
    background-color: transparent;
    border: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-indent: -9999px;
    overflow: hidden;
}

.btn-delete {
    background-image: url("images/delete.png");
}

.btn-update {
    background-image: url("images/update.png");
}