﻿/*
 * Styling for Cumulative Summaries
 */
.sk-subtotal-row > td {
  background: #D7E4F4;
  height: 30px;
}

.sk-total-row > td {
  background: #95B3D7;
  border: transparent !important;
  height: 30px;
  text-align: right;
}

.sk-total-row  > td:first-child { /* take priority over scrollable grids with  colored first column*/
  background: #95B3D7 !important;
}

/*
 * List of shifts corresponding to a provider-cat stat: two-column table with padding for the cells in the first column
 */
.shiftList {
  display: table;
  white-space: nowrap;
}

.shiftList > div {
  display: table-row;
}

.shiftList > div > div {
  display: table-cell;
}

.shiftList > div > div:first-child {
  padding-right: 7px;
}

.shiftListDetails {
  margin-top: 5px;
  font-style: italic;
}

/* Targets */
/* Colors in CumulativeSumSvc.WorkloadDeviationStyles should match the colors defined here */
td[sk-target="WayOver"] {
  background-color: #F9B5BF;
}

td[sk-target="Over"] {
  background-color: #FBDADE;
}

td[sk-target="WayUnder"] {
  background-color: #B3E88B;
}

td[sk-target="Under"] {
  background-color: #DCF5C9;
}