#bandeau-bas {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-color: #7272e2d0;
  color: white;
  border-top: 1px solid rgb(241, 239, 233);
  display: flex;
  justify-content: flex-end;
  /* ✅ aligne à droite */
  align-items: center;
  font-size: 1.1em;
  z-index: 1000;
}

#bandeau-bas span {
  cursor: pointer;
  padding: 5px 10px;
}

#menu-deroulant {
  position: fixed;
  bottom: 45px;
  /* juste au-dessus du bandeau */
  right: 10px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 1001;
}

#menu-deroulant ul {
  list-style: none;
  margin: 0;
  padding: 5px 0;
}

#menu-deroulant li {
  padding: 10px 20px;
  cursor: pointer;
}

#menu-deroulant li:hover {
  background-color: #f0f0f0;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 90%;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
}

.popup h3 {
  margin-top: 0;
}

.popup .fermer {
  position: absolute;
  top: 8px;
  right: 10px;
  cursor: pointer;
  font-size: 1.2em;
}

.hidden {
  display: none;
}