/* Style for the toggle switches *//**
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}
**/












h1#title {
  color: #FF3D9A !important;
  font-weight: 700;
  font-size: 25px;
}

/* Style for the toggle switches */
.switch {
  position: relative;
  display: inline-block;
  width: 60px; /* Adjusted width for a slightly wider switch */
  height: 26px;
  vertical-align: middle;
  margin-right: 10px; /* Added margin for spacing */
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ddd; /* Light gray background */
  transition: .4s;
  border-radius: 10px; /* 34  */
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 3px;
  background-color: #fff; /* White slider button */
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input:checked + .slider {
  background-color: #FF3D9A; /* 4CAF50 Green color when toggled on */
}

input:checked + .slider:before {
  transform: translateX(36px); /* Adjusted position for wider switch */
}


input#submit.button.button-primary {
  width: 280px; /* Adjust width as needed */
  padding: 6px 20px;
  font-size: 16px;
  background-color: inherit !important; /* 4CAF50 Green background */
  color: #fff; /* White text */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 4px solid #FF3D9A !important;
  color: #FF3D9A !important;
  font-weight: 600;


}


input#submit.button.button-primary:hover {
  background-color: #FF3D9A !important; /* 45a049 Darker green on hover */
  color: #ffffff !important;
}


div form table tr th h2.feature {
  color: #896CE1 !important;
  margin: 0;
}

/**
.all-in-one {
    max-width: 290px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 100px;
}
**/