#section_commander_salle {
  padding-top: 0;
  padding-bottom: 0;
}
#section_commander_salle > .container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.connexion_container {
  width: 100%;
  max-width: 500px;
  margin: 0;
  padding: 20px;
  border: 1px solid #87aece;
  border-radius: 10px;
}

.show {
  display: block;
}

.btn.selected {
  background-color: #005ca7;
  box-shadow: 0 0 0 0.2rem rgba(0, 92, 167, 0.5);
  color: white;
}
.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

#selectionPanel {
  display: none;
}
#selectionPanel.show {
  display: flex;
}

#creneauTypeSelection {
  display: none;
}
#creneauTypeSelection.show {
  display: block;
}
#creneauTypeSelection #halfDaySelection {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#periodsList {
  display: none;
}
#periodsList.show {
  display: block;
}

#totalPricePanel {
  display: none;
}
#totalPricePanel.show {
  display: block;
}

.btns_nav {
  position: relative;
}
.btns_nav #service-tooltip {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: #444;
  font-weight: bold;
  pointer-events: none;
  transition: color 0.2s;
  opacity: 0;
  transition: opacity 0.25s;
}
.btns_nav #service-tooltip.visible {
  opacity: 1;
}