
/* Custom Upload Field Styling */
.custom-file-upload {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    width: 100%;
}

.custom-file-upload-button {
    background-color: #ffa500;
    padding: 10px 15px;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    cursor: pointer;
}

.custom-file-upload-label {
    font-size: 12px;
    padding-left: 10px;
    color: #666;
}

.custom-file-upload input[type='file'] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.custom-file-upload-filename {
    margin-top: 5px;
    font-size: 12px;
    color: #333;
    display: none;
}
