  /* Style for the form */
  
  /* Style for the labels */
  form label {
    display: block; /* Place each label on a new line */
    margin-bottom: 5px; /* Add some space between the label and input */
    font-weight: bold; /* Make the label text bold */
  }
  
  /* Style for the input fields */
  form input[type="text"], form input[type="url"],
  form input[type="file"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px; /* Add some space between input fields */
    box-sizing: border-box; /* Include padding and border in the total width */
  }
  
  /* Style for the submit button */
  form button[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Optional: Add some additional styling to the button on hover */
  form button[type="submit"]:hover {
    background-color: #0056b3;
  }
  

  /* Style for the textarea */
form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical; /* Allow vertical resizing of the textarea */
    margin-bottom: 15px; /* Add some space between textarea and other elements */
    box-sizing: border-box; /* Include padding and border in the total width */
  }
  
  /* Style for the select */
  form select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px; /* Add some space between select and other elements */
    box-sizing: border-box; /* Include padding and border in the total width */
  }
  
  /* Optional: Style the select dropdown arrow */
  form select::-ms-expand {
    display: none; /* Hide the default arrow in IE */
  }
  
  form select::-webkit-outer-spin-button,
  form select::-webkit-inner-spin-button {
    appearance: none; /* Hide the default arrow in Chrome and Safari */
    margin: 0; /* Remove the margin */
  }
  
  /* Optional: Add a custom arrow icon for the select */
  form select {
    background-image: url("path/to/custom-arrow-icon.png");
    background-position: right center;
    background-repeat: no-repeat;
    -webkit-appearance: none; /* Remove default appearance in Chrome and Safari */
    -moz-appearance: none; /* Remove default appearance in Firefox */
    appearance: none; /* Remove default appearance in other modern browsers */
  }

  /* Style for the number input */
form input[type="number"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 15px; /* Add some space between input fields */
  box-sizing: border-box; /* Include padding and border in the total width */
}

/* Optional: Style the number input arrow */
form input[type="number"]::-webkit-outer-spin-button,
form input[type="number"]::-webkit-inner-spin-button {
  appearance: none; /* Remove the default arrow in Chrome and Safari */
  margin: 0; /* Remove the margin */
}

/* Optional: Style the number input in Firefox */
form input[type="number"] {
  -moz-appearance: textfield; /* Remove the default arrow in Firefox */
}



/* Style for the custom upload button */
.upload-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.upload-button:hover {
  background-color: #0056b3;
}

/* Style for the image container */
.image-container {
  display: inline-block;
  border: 1px solid #ccc;
  padding: 5px;
  border-radius: 5px;
  margin-top: 10px;
  position: relative;
}

/* Style for the remove button */
.remove-button {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: rgba(255, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 30px;
  height:30px;
}

.uploader-image{
  height: 120px;
  width: 120px;
  object-fit: contain;
}

/* Hide the label directly above the file input */
label + input[type="file"] {
  display: none;
}


/* Style for the email input */
form input[type="email"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 15px; /* Add some space between input fields */
  box-sizing: border-box; /* Include padding and border in the total width */
}








