/* Styling for input and textarea fields */
input[type="text"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

/* Styling for the "Invia a tutti i soci" section */
.checkbox-section {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
  /* margin-top: 20px; */
}

.checkbox-section p {
  margin-right: 10px;
}

/* Styling for the select dropdown */
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  margin-bottom: 10px;
}

/* Styling for the button */
.button {
  background-color: white;
  border: 5px solid #04AA6D;
  color: green;
  padding: 10px 20px;
  border-radius: 10px !important;
  cursor: pointer;
  margin-right: 20px !important;

  box-shadow: 5px 5px 16px 1px #04AA6D;
  -webkit-box-shadow: 5px 5px 16px 1px #04AA6D;
  -moz-box-shadow: 5px 5px 16px 1px #04AA6D;
}

.button:hover {
  background-color: #04AA6D;
  color: white;
  border: 5px solid #04AA6D;
}

/* Styling for the custom checkbox */
.custom-checkbox {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  margin-top: -35px;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #ccc;
  border: 1px solid #999;
  border-radius: 4px;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: #007bff;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}


/* Styling for the table container */
.table-container {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-width: 70%;
}

.table-container2 {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-width: 70%;
}

/* Styling for the table */
table {
  width: 100%;
  border-collapse: collapse;
}

/* Styling for table headers */
th {
  background-color: #007bff;
  color: #fff;
  font-weight: bold;
  padding: 10px;
}

/* Styling for table rows */
tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Styling for table cells */
td {
  padding: 10px;
  border: 1px solid #ccc;
}

/* Hover effect for table rows */
tr:hover {
  background-color: #d4d4d4;
}
