/*GRIDS*/

.a-IG-header, .a-IRR-toolbar {
    background-color: #f0f0f0;
}

/*   CHANGE LOOK AND FEEL OF APEX IG 'EDIT' BTN WHEN CLICKED VS NOT CLICKED   */
/* Target ALL IG edit toggle buttons */
.a-Toolbar button[name="edit"] {
    position: relative;
}
/* Styling when edit mode is ON */
.a-Toolbar button[name="edit"][aria-pressed="true"] {
    background-color: white;
    color: #58595b;
    border: 1px solid #969a9f;
}
/* Hide original label text */
.a-Toolbar button[name="edit"] .a-Button-label {
    display: none;
}
/* Show "Edit" when NOT editing */
.a-Toolbar button[name="edit"][aria-pressed="false"]::after {
    content: "Edit";
}
/* Show "Editing..." when editing */
.a-Toolbar button[name="edit"][aria-pressed="true"]::after {
    content: "Editing...";
    font-weight: bold;
}
/* Ensure pseudo text displays properly */
.a-Toolbar button[name="edit"]::after {
    display: inline-block;
}

/*ADD TOP SCROLL BAR TO IGs */

.a-GV-w-hdr {
    overflow-x: auto !important;
}