.wizard-step {
    padding: 30px;
    background: #f9f9f9;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center;
  }
.slider-container {
     display: flex;
    flex-direction: column;
    align-items: center; /* Centra orizzontalmente */
    justify-content: center;
    margin: 50px 0;
}
  input[type="text"], input[type="tel"], input[type="email"]{
    padding: 10px;
    margin: 10px 0;
    width: 250px;
  }


input[type="range"] {
    width: 200px;
    appearance: none;
    height: 5px;
    border-radius: 5px;
    background: linear-gradient(to right, #c97a2b 0%, #ddd 0%);
    outline: none;
    margin: 10px 0;
    transition: background 0.3s;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #c97a2b;
    cursor: pointer;
    border: none;
}

input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #c97a2b;
    cursor: pointer;
    border: none;
}

input[type="number"] {
    padding: 10px;
    margin: 10px 0;
    width: 250px;
}

  button {
    background-color: #c97a2b;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
  }

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #c97a2b; /* Cambia il colore se il browser lo supporta */
}
.selected {
    background-color: #c97a2b;
    color: #fff;
    border-color: #c97a2b;
}

.privacy-error {
  background-color: #f0eaea;
  color: #a33;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  font-size: 0.9rem;
}

#messaggio-esito {
    display: none;
    margin-top: 20px;
    padding: 10px;
    background-color: #f4f4f4;
    color: #c97a2b;
    border-radius: 5px;
    text-align: center;
}
body.attendere {
    cursor: wait;
}

.overlay-attesa {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.overlay-attesa .messaggio {
    background-color: #ffffff;
    padding: 2rem 3rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    font-size: 1.4rem;
    color: #333;
    text-align: center;
}

.overlay-attesa .successo {
    color: #3ba700;
    font-weight: bold;
}

.overlay-attesa .errore {
    color: #d70000;
    font-weight: bold;
}


