/* Hide the default file input */
#cameraUpload {
  display: none;
}

/* Style the label to look like a camera icon */
label[for="cameraUpload"] {
  cursor: pointer;
  /* Add your styling for the camera icon here */
  font-size: 2em; /* Example size for Font Awesome icon */
  color: #333;
  /* Add padding, border, background, etc. as needed */
}

label[for="cameraUpload"]:hover {
  color: #007bff; /* Example hover effect */
}
