/* ===============================
   STRUCTURE GLOBALE
   =============================== */
.container-select-project {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 10px -8px rgba(0, 0, 0, 0.4);
  /*overflow: hidden;*/
}

/* ===============================
   SELECTEUR DE PROJET
   =============================== */
.select-project {
  flex: 1 1 auto;
  /*min-width: 220px;*/
  height: 50px;
  padding: 10px;
  color: black;
  font-weight: bold;
  font-size: 16px;
  background: url('../img/keyboard_arrow_down.svg') no-repeat right #fff;
  background-position-x: 95%;
  background-size: 25px;
  border: none;
  border-right: 1px solid #ccc;
  border-radius: 12px 0 0 12px;
  -webkit-appearance: none;
  appearance: none;
}

/* ===============================
   BOUTON DE VALIDATION
   =============================== */
.button-select-project {
  flex: 0 0 auto;
  width: 145px;
  height: 50px;
  font-size: 100%;
  font-weight: bold;
  background: #eb534c;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.button-select-project:hover {
  background: #ea4a43;
}

/* ===============================
   FOCUS ACCESSIBILITÉ
   =============================== */
.select-project:focus,
.button-select-project:focus {
  outline: none;
}

/* ===============================
   ADAPTATION MOBILE
   =============================== */
@media (max-width: 600px) {
  .container-select-project {
    flex-direction: row;
    align-items: stretch;
    box-shadow: 0 6px 8px -4px rgba(0, 0, 0, 0.3);
  }
}

/* ===============================
   VARIANTE : CONTENEUR MOBILE SCROLL
   =============================== */
#mobile-submenu-scroll {
  padding-top: 10px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

#mobile-submenu-scroll .container-select-project {
  border-radius: 12px;
  box-shadow: none;
}

#mobile-submenu-scroll .select-project {
  border: 1px solid #ccc;
  border-radius: 12px 0 0 12px;
  box-shadow: none;
}

#mobile-submenu-scroll .button-select-project {
  width: 115px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
