.popover{
    max-width: 100%; /* Max Width of the popover (depending on the container!) */
}

/* .btn {
	width: 30px
  align: center
} */

.progress-bar-vertical {
  width: 20px;
  min-height: 100px;
  margin-left: 10px;
  float: left;
  display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;  /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
  align-items: flex-end;
  -webkit-align-items: flex-end; /* Safari 7.0+ */
}

.progress-bar-vertical .progress-bar {
  width: 100%;
}

/* Style de base du chevron */
.custom-chevron::after {
    content: '\25B6'; /* Flèche pointant vers la droite (▶) pour l'état fermé */
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Rotation quand le contenu est déplié */
span[aria-expanded="true"] .custom-chevron::after {
    transform: rotate(90deg); /* Elle pointe vers le bas (▼) une fois ouvert */
}
.guide-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    color: white;
    
    /* Centrage Flexbox */
    display: flex;
    flex-direction: column; /* Organise le contenu du haut vers le bas */
    justify-content: center; /* Centre verticalement */
    align-items: center;     /* Centre horizontalement */
}

/* On s'assure que le contenu intérieur ne casse pas le centrage */
.guide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem; /* Espace entre les instructions et le bouton */
    max-width: 80%;
}

.guide-item {
    text-align: center;
    padding: 15px;
    border: 1px dashed rgba(255,255,255,0.5);
    border-radius: 10px;
    width: 100%;
}
