/* Custom CSS for styling the upload UI */
.custom-upload-label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.custom-upload-label input[type="file"] {
    display: none;
}

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

.custom-upload-label::before {
    content: attr(data-content); /* Use the data-content attribute for content */
}

.custom-upload-label::after {
     /* content: "\F297"; Unicode for file-upload icon (FontAwesome) */
    font-family: "FontAwesome";
    margin-left: 10px;
}