/* Apply styles to the download button in an Entity List */
.entitylist-download.btn.btn-info.pull-right.action {
    background-color: #fff !important; /* Change to your desired background color */
    color: var(--portalThemeColor4); /* Change to your desired text color */
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 2px;
    border-width: 1px;
    text-decoration: none;
    border-color: var(--portalThemeColor4);
}
 
/* On hover, change the background color */
.entitylist-download.btn.btn-info.pull-right.action:hover {
    background-color: var(--portalThemeColor4) !important; /* Change to your desired hover color */
    color: #fff !important;
}