/* shared */

.actions .savings-pill {
    color: green;
    margin: 0;
    padding: 0;
    border-radius: 10rem;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    display: inline-flex;
    align-items: baseline;
    width: 100%;
}
.actions .savings-pill > span {
    padding: .6em;
    display: inline-block;
    overflow: hidden;
}

.actions .savings-pill span.val {
    width: 100%;
    text-align: center;
    border-right: 0px solid white;
}
.actions .savings-pill-verified {
    background-color: #c6ded8;
    color: #343a40;
}
.actions .savings-pill-none {
    background-color: #dadada;
    color: #343a40;
}
.actions .savings-pill-mixed {
    background-color: #ecd695;
    color: #343a40;
}
.actions .savings-pill-implemented {
    background-color: #dee2e6;
    color: #343a40;
}
.actions .savings-pill-no-change {
    background-color: #dec7c7;
    color: #343a40;
}
.actions .green-number {
    color: #007e5d;
}
.actions .red-number {
    color: #aa1321;
}


/* hub/actions/_show.html */

.actions-show .total {
    text-align: center;
    padding: 0em 0 1em 0;
    font-size: 150%;
    display: flex;
}
.actions-show .total .savings-pill {
    font-weight: 500;
    font-size: 75%;
    margin: 0 .3em
}

.actions-show table.info {
    margin-bottom: 1em;
}
.actions-show table.info td {
    padding: .5em;
    white-space: nowrap;
}
.actions-show table.info .badge.status {
    text-transform: uppercase;
}
.actions-show table.changes {
    margin-bottom: 0;
}
.actions-show table.changes th,
.actions-show table.changes td {
    vertical-align: middle;
}
.actions-show table.changes tr.change-ignored td {
    opacity: .33;
    text-decoration: line-through;
}
.actions-show table.changes tr.change-ignored td:first-child {
    opacity: 1;
}
