body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f4f4f4;
}

#content {
  background-color: white;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 50%;
  min-width: 100px;
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: auto;
}

h2, h3, p {
  margin-bottom: 15px;
}

input[type="text"] {
  width: calc(100% - 20px);
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#token_input_id {
  margin-top: 10px;
  margin-bottom: 0px;
}

#lat_input_id, #lng_input_id {
  width: 40%;
  margin-right: 5px;
}

#delete_button_id {
  padding: 8px 15px;
  background-color: #df1e1e;
  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 5px;
}

#delete_button_id:hover {
  background-color: #c11d1d;
}

#getcoord_button_id {
  padding: 8px 15px;
  background-color: #1e9edf;
  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

#getcoord_button_id:hover {
  background-color: #1d8ac1;
}

#submit_button_id {
  margin-top: 20px;
  padding: 10px;
  width: 100%;
  background-color: #1e9edf;
  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

/* Bottone disabilitato */
#submit_button_id:disabled {
  background-color: #555; /* Più scuro quando disabilitato */
  cursor: not-allowed; /* Cambia il cursore per indicare che è disabilitato */
}

  /* Bottone abilitato */
  #submit_button_id:not(:disabled):hover {
    background-color: #1d8ac1;
  }

.notification-checkbox {
  margin-right: 8px;
}

#notifications {
  margin-top: 20px;
  text-align: left;
}

#notifications ul {
  list-style-type: none;
  padding-left: 0;
}

#notifications li {
  margin-bottom: 10px;
}

#submit_status_id {
  margin-top: 15px;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #ccc;
}