/* stylelint-disable color-named, scale-unlimited/declaration-strict-value */

.consent-status {
    height: 12px;
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}
.consent-status.consent-status--expired,
.consent-status.consent-status--outstanding {
    background-color: red;
}
.consent-status.consent-status--expires-soon {
    background-color: orange;
}
.consent-status.consent-status--valid {
    background-color: green;
}
.consent-status.consent-status--not-required {
    background-color: blue;
}

.consent-status-legend {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.consent-status-legend li {
    display: inline-block;
    margin-right: 0.5em;
}

ul.consent-status-legend--padded {
    padding-left: 1em;
}
