.ag-wrapper.ag-input-wrapper.ag-checkbox-input-wrapper {
    box-shadow: none;
}

body {
    --ag-value-change-value-highlight-background-color: #DACEE3;
}

/* grid cell conditional formatting - css classes must match to .style names */
.cell-red {
    color: black;
    background-color: #fc5855;
}

.cell-light-red {
    color: black;
    background-color: #ff9c74;
}

.cell-blue {
    color: black;
    background-color: #6f99cd;
}

.cell-light-blue {
    color: black;
    background-color: #9ebade;
}

.cell-yellow {
    color: black;
    background-color: #ffff00;
}

.cell-light-yellow {
    color: black;
    background-color: #ffff99;
}

.cell-orange {
    color: black;
    background-color: #ff6300;
}

.cell-light-green {
    color: black;
    background-color: #c6efce;
}

.cell-green {
    color: black;
    background-color: #00b050;
}

.cell-none {
    background-color: transparent;
    color: var(--nucleus-text-color);
}

.filter-layout {
    padding-right: 5px;
    margin: 5px;
    border-radius: 5px;
    border: 1px solid lightgray;
    background-color: white;
}

.filter-radio-label {
    display: inline-flex;
    align-items: center;
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
}

.filter-radio-btn {
    accent-color: var(--mud-palette-primary);
    height: 20px;
    width: 20px;
    margin: 10px;
}

.filter-checkbox-btn {
    accent-color: var(--mud-palette-primary);
    height: 15px;
    width: 15px;
    margin: 10px;
}