    /* Panneau latéral */
    #sidebar {
        position: fixed;
        top: 0;
        right: -400px;
        /* caché à droite */
        width: 400px;
        height: 100%;
        background: #fff;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease-in-out;
        padding: 1rem;
        overflow-y: auto;
        z-index: 1000;
    }

    #sidebar.active {
        right: 0;
        /* visible */
    }

    #closeSidebarBtn {
        float: right;
    }

/* Titre */
.info-title {
  margin: 1rem 0 1rem;
  font-size: 1.3rem;
  font-weight: bold;
  color: #2c3e50;
  border-bottom: 2px solid var(--background-action-high-blue-france);
  padding-bottom: 0.5rem;
  line-height: 1.0em;
}

/* Liste */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Bloc clé/valeur */
.info-block {
  background: #f8f9fa;
  padding: 0.4rem 0.6rem;
  border: 1px solid #e0e0e0;
  /*border-radius: 6px;*/
}

.info-key {
  font-weight: 600;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.3rem;
  text-transform: capitalize;
}

.info-value {
  font-size: 0.9rem;
  color: #222;
  line-height: 1.4;
  word-break: break-word; /* important pour couper les longs mots/urls */
}
