/* background */
.neumorphism-button {
    position: absolute;
    bottom: 10vh;
    margin: auto;
    width: 154px;
    height: 50px;
    background: #ffffff;
    box-shadow: -1px -1px 0px #FFFFFF, -2px -2px 2px #E6D6C3, inset -1px -1px 0px #FFFFFF, inset -2px -2px 2px #E0D0BC;
    border-radius: 10px;
    z-index: 2;
    transition: box-shadow 0.3s ease; /* Ajoute une transition pour une animation en douceur */
}
.neumorphism-button:hover,
.neumorphism-button:hover .font-beige-color {
    color: #e3d2c4; /* Change la couleur du texte au survol */
    transition: color 0.3s ease;
}
.neumorphism-button:hover {
    transition: 0.3s;
    box-shadow: -1px -1px 0px #ffffffbb, -2px -2px 2px #e6d6c3b4, inset -1px -1px 0px #ffffffbc, inset -2px -2px 2px #e0d0bcb7;
    background: #FFFEFD;
}
.neumorphism-button:active {
    background: #fefefe;
    box-shadow: -1px -1px 0px #ffffff50, -2px -2px 2px #e6d6c345, inset -1px -1px 0px #ffffff42, inset -2px -2px 2px #e0d0bc46;
}

/* Ajoutez la transition à la pseudo-classe :active pour une animation fluide */
.neumorphism-button:active {
    transition: box-shadow 1s ease;
}
.font-beige-color {
    color: #DCC4A7;
}
.button-font {
    position: relative;
    font-style: normal;
    font-size: 20px;
    line-height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.button-planifier-rdv {
    background-color: #c3c3c3;
    cursor: not-allowed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px 20px 10px;
    position: absolute;
    width: 180px;
    height: 42px;
    backdrop-filter: blur(20px);
    border-radius: 5px;
}
.access-button {
    background-color: #DCC4A7;
    cursor: pointer;
}
/* counter +/- */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.custom-number-input input:focus {
  outline: none !important;
}

.custom-number-input button:focus {
  outline: none !important;
}

@media (max-width: 440px) {
    .neumorphism-button {
        width: 65%;
    }
}
@media (min-width: 1024px) {
    .neumorphism-button {
        width: 220px;
    }
}