/* Custom export button styling */
.btn-export {
    color: #fff;
    background-color: #217346;
    border-color: #217346;
}

.btn-export:hover {
    color: #fff;
    background-color: #1c613b;
    border-color: #195a37;
}

.btn-export:focus,
.btn-export.focus {
    color: #fff;
    background-color: #1c613b;
    border-color: #195a37;
    box-shadow: 0 0 0 0.2rem rgba(33, 115, 70, 0.5);
}

.btn-export.disabled,
.btn-export:disabled {
    color: #fff;
    background-color: #217346;
    border-color: #217346;
}

.btn-export:not(:disabled):not(.disabled):active,
.btn-export:not(:disabled):not(.disabled).active,
.show > .btn-export.dropdown-toggle {
    color: #fff;
    background-color: #195a37;
    border-color: #175232;
}

.btn-export:not(:disabled):not(.disabled):active:focus,
.btn-export:not(:disabled):not(.disabled).active:focus,
.show > .btn-export.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(33, 115, 70, 0.5);
}