.shbc-div-btn {
  background-color: #ff6a00;
  color: white;
  border: 2px solid white;
  border-radius: 30px;
  padding: 10px;
  width: 150px;
  font-size: 1.2em;
  font-family: 'Squada One', sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  letter-spacing: 1px;
  margin: 0 auto;
}

.shbc-div-parent-btn {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column; /* disposition verticale */
  align-items: center;    /* centre horizontalement */
  gap: 10px;              /* espace entre les deux divs */
  padding: 10px;

}

#menu-navigation-journees{
  text-align: center;
  margin: 0 auto;
}

.select-dropdown,
.select-dropdown * {
  color: white;
  margin: 0;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}
.select-dropdown {
  position: relative;
  background-color: #ff6a00;
  border-radius: 10px;
  width:110px;
}
.select-dropdown select {
  font-size: 1rem;
  font-weight: normal;
  color: white;
  #max-width: 100%;
  max-width: 110px;
  padding: 8px 24px 8px 10px;
  border: none;
  background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
  appearance: none;
}
.select-dropdown select:active, .select-dropdown select:focus {
  outline: none;
  box-shadow: none;
}
.select-dropdown:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 0;
  height: 0;
  margin-top: -2px;
  border-top: 5px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}