.indicatorclose {
    width: 14px;
    height: 14px;
    background-color: #c50000;
    border-radius: 50px;
}

.indicatorOpen {
    width: 14px;
    height: 14px;
    background-color: #199700;
    border-radius: 50px;
}

.indicatorSAV {
    width: 14px;
    height: 14px;
    background-color: #0048a7;
    border-radius: 50px;
}

.indicatorWait {
    width: 14px;
    height: 14px;
    background-color: #7a7a7a;
    border-radius: 50px;
}

.indicatorTaken {
    width: 14px;
    height: 14px;
    background-color: #fca431;
    border-radius: 50px;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.page-loader-dark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.25em;
}

/* Le switch - boîte englobante */
.switch {
  position: relative;
  display: inline-block;
  width: 35px; /* Largeur spécifiée */
  height: 19px; /* Hauteur spécifiée */
}

/* Cache l'input d'origine */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* Le curseur/glisseur */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 14px; /* Bord arrondi, ajusté à la hauteur du switch */
}

.slider:before {
  position: absolute;
  content: "";
  height: 15px; /* Hauteur du curseur ajustée */
  width: 15px; /* Largeur du curseur ajustée */
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%; /* Forme circulaire pour le curseur */
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px); /* Déplacement ajusté à la largeur du switch */
}
