.btn:not(.btn-danger) {
    background-color: #F4694F;
    color: #fff;
    border: none;
}

.btn:hover:not(.btn-danger) {
    background-color: #D6442E;
    color: #fff;
}

.list tr:hover, .list tr:hover td{
	background-color: #f7f7f7;
	transition: background-color 0.2s;
	cursor:pointer;
}

.navbar-brand img {
    max-height: 60px;
}



    /* Style pour le conteneur du champ texte et du bouton */
    .copy-container {
        display: flex;
        align-items: center;
    }

    /* Style pour le champ texte */
    .form-control#url_token {
        border-radius: 5px 0 0 5px; /* Coins arrondis à gauche */
    }

    /* Style pour le bouton "Copier" */
    .btn#copyUrlToken {
        border-radius: 0 5px 5px 0; /* Coins arrondis à droite */
        margin-left: -1px; /* Pour un espacement subtil entre le champ texte et le bouton */
    }
	
	
.info-icon {
    cursor: help;
    color: #007bff;
    font-weight: bold;
    margin-left: 5px;
    position: relative; /* Position relative ajoutée */
}

.info-icon::after {
    content: "?";
    display: inline-block;
    width: 15px; /* Ajustez la largeur et la hauteur en conséquence */
    height: 15px;
    background-color: #999;
    color: white;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
    line-height: 15px;
    margin-left: 5px;
    cursor: help;
}

.info-icon:hover::before {
    content: attr(data-info);
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px;
    border-radius: 5px;
    top: 0;
    left: 30px; /* Ajustez la position au besoin */
    white-space: nowrap;
    font-size: 14px;
    z-index: 1;
}