/* basic form styles */#signature-pad {
	background: #fff;
	border: 1px solid #ccc;
}
#clear-signature {
	margin-top: 5px;
	background: #e74c3c;
	color: white;
	padding: 5px 10px;
	border: none;
	cursor: pointer;
}

#signature-pad { background:#fff; }
#clear-signature { margin-top:5px; }
#signature-pad {
  touch-action: none;          /* impedisce lo scroll su mobile */
  -ms-touch-action: none;      /* per vecchi IE/Edge */
  -webkit-user-select: none;   /* Safari */
  user-select: none;
}

/* Container form */
#nsc-form {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Titoli */
#nsc-form label {
  display: block;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
  color: #333;
}

/* Input, Select, File */
#nsc-form input[type="text"],
#nsc-form input[type="email"],
#nsc-form input[type="tel"],
#nsc-form input[type="date"],
#nsc-form input[type="file"],
#nsc-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  font-size: 15px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

#nsc-form input[type="text"]:focus,
#nsc-form input[type="email"]:focus,
#nsc-form input[type="tel"]:focus,
#nsc-form input[type="date"]:focus,
#nsc-form select:focus {
  border-color: #0073aa;
  outline: none;
}

/* Firma */
#signature-pad {
  background: #fff;
  border: 2px dashed #ccc;
  border-radius: 4px;
  height: 120px;
  margin-top: 8px;
}

/* Pulsanti */
#nsc-form button {
  background-color: #0073aa;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 30px;
  transition: background-color 0.2s ease;
}

#nsc-form button:hover {
  background-color: #005f8c;
}

#clear-signature {
  background-color: #bbb;
  color: #fff;
  font-size: 14px;
  padding: 8px 16px;
  margin-top: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#clear-signature:hover {
  background-color: #999;
}

/* Responsive */
@media screen and (max-width: 600px) {
  #nsc-form {
    padding: 20px;
  }
}