   /* Apply custom styling to the select element */
   #sep_type,
   #model_type,
   #output_format {
       width: 100%;
       /* Set the width to 100% to make it expand to the container's width */
       padding: 10px;
       /* Add padding for spacing around the select element */
       border: 1px solid #ccc;
       /* Add a border */
       border-radius: 4px;
       /* Add rounded corners */
       background-color: #fff;
       /* Set a white background color */
       font-size: 16px;
       /* Adjust the font size */
       color: #333;
       /* Set the text color */
   }

   /* Style the hover and focus state of the select element */
   #separationType:hover,
   #separationType:focus {
       border-color: #007bff;
       /* Change border color on hover and focus */
       outline: none;
       /* Remove the default focus outline */
       box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
       /* Add a subtle box shadow on focus */
   }

       .dz-success-mark {
        display: none !important;
    }

    .dz-error-mark {
        display: none !important;
    }