<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#dropzone-form {
    width:100%;
    display : block;
    border-radius: 8px;
    border: 2px dashed #cfcfcf;
    place-items: center;
    margin: 6px 0px 6px 0px;
}
#upload-button {
    background-color: var(--halo-red) !important;
    color: white;
    display: none;
    padding: 6px 12px;
    float: left;
    border-radius: 8px;
    margin: 6px 0px 6px 0px;
}

#clear-button {
    backgroud-color: #FCFCFD;
    display: none;
    padding: 6px 12px;
    float: right;
    border-radius: 8px;
    margin: 6px 0px 6px 0px;
}


.dz-preview {
    display: none !important;
}

#file-to-upload {
    display: none;
}

.progress-container {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    margin-bottom: 0px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 8px;
}

.error-message {
    display: block;
    color: rgb(114, 28, 36);
    margin-top: 5px; /* Adjust spacing as needed */
    font-size: 12px;  /* Adjust the font size as needed */
}

.progress-container:hover {
    background-color: rgba(224, 224, 224, 0.92); /* Slightly darker background color on hover */
}

.progress-bar {
    height: 10px; /* Height of the progress bar */
    width: 0%;
    background-color: #4caf50; /* Initial color */
    margin-top: 5px; /* Space between text and bar */
    transition: width 0.3s ease-in-out; /* Smooth transition for progress */
    border-radius: 8px;
}

.file-info {
    font-size: 14px; /* Adjust text size */
    margin-right: 10px; /* Spacing between text and bar */
}

.glyphicon.glyphicon-remove {
    position: absolute;
    right: 10px;
    top: 15px;
    background-color: transparent;
    border: transparent;
}
.glyphicon.glyphicon-remove:hover {
    color: red;
}




</pre></body></html>