        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50%;
            max-width: 400px;
            background-color: #2d3035;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            z-index: 1000;
            border-radius: 10px;
        }
        .popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #ccc;
            padding-bottom: 10px;
        }
        .popup-header h2 {
            margin: 0;
            font-size: 18px;
        }
        .popup-close {
            cursor: pointer;
            font-size: 24px;
        }
        .popup-content {
            margin-top: 20px;
            max-height: 300px;
            overflow-y: auto;
        }
		
#solde {
    display: flex;
    align-items: center; /* Aligner verticalement les éléments enfants */
}

.hidden {
  display: none !important;
}

#solde-texte {
    margin-right: 5px; /* Marge à droite pour l'espace entre le texte et l'icône */
}

#icone {
  cursor: pointer;
  font-size: 24px; /* Ajustez la taille de l'icône selon vos besoins */
}