/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Banner
- Modal
- Tabs
- Main Dashboard Tab
- Measurement Tab
- Tables/Dropdown
- Containers
- Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#app-container * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;

}

body {
  background-color: #D9D9D9;
  font-family: 'Noto Sans JP', sans-serif;
  width: 100%;
  height: 100vh;
  max-width: 100% !important;
  overflow-x: hidden;
  margin: 0;
}

#big-app-container {
  max-width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 6rem;
}

#login-container, #logout-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}

#login-panel {
  background-color: #f3f0f0;
  border: 1px solid #acacac;
  border-radius: 15px;
  padding: 5rem;
}

#logout-panel {
  background-color: #f3f0f0;
  border: 1px solid #acacac;
  border-radius: 15px;
  padding: 3rem;
}


#login-panel img, #logout-panel img {
  height: 3rem;
  margin-right: 0.5rem;
}

#login-panel h4, #logout-panel h4 {
  font-size: 1.8rem;
}

#uname-div, #pwd-div {
  display: flex;
  align-items: center;
}

#uname-div {
  margin: 2rem 0 1rem 0;
}

#uname-div label, #pwd-div label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 101px;
  background-color: #1E4675;
  height: 35px;
  border-radius: 5px 0px 0px 5px;
  color: white;
  font-size: 14px;
}

#uname-box, #pwd-box {
  border-radius: 0px 4px 4px 0px;
  height: 35px;
  width: calc(100% - 101px);
}

#login-button-div {
  display: flex;
  justify-content: center;
  padding-top: 3rem;
}

.banner {
  height: fit-content;
  color: white;
  background-color: #008559;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0rem 2rem;
  width: 100vw;
}


.banner h5 {
  font-family: 'Noto Sans Semi Bold', sans-serif;
  font-weight: 500;
  line-height: 1.2;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.banner h6 {
  font-size: 1.6rem;
  line-height: 1;
}

.banner button {
  color: #95969A;
  margin-right: 10px;
  height: 3rem;
  line-height: 3rem;
}

#banner-text {
  display: flex;
  align-items: center;
}

#banner-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

.banner button:hover {
  color: #92e0d3;
  border-color: whitesmoke;
}

.banner Img {
  height: 3rem;
  /* margin: 0px 10px; */
}

/* The Modal (background) */
.modal {
  display: none; /*Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1005; /* Sit on top */
  left: 0;
  top: 0;
  width: 100vw; /* Full width */
  height: 100vh; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.markdown-container {
  width: 60vw;
  margin: 10% auto;
  padding: 10px 15px;
  background-color: #2d3038;
}

.close-container {
  width: 100%;
  margin: 0;
  padding: 0;
  height: 40px;
}

.closeButton {
  padding: 0 15px;
  font-weight: normal;
  float: right;
  height: 100%;
  border: none;
}

.closeButton:hover {
  color: #91dfd2;
}

/* Tabs
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#tabs {
  width: 100%;
  background-color: #D9D9D9;
  height: 45px;
}

#app-tabs-parent {
  height: 100%;
}
#app-tabs {
  height: 100%;
}

.custom-tabs {
  background-color: #D9D9D9;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border-right: #D9D9D9 solid 0.8rem;
  width: 348px;
}

#people-tab.custom-tab, 
#traffic-tab.custom-tab, 
#realtime-tab.custom-tab {
  background-color: #797979;
  letter-spacing: 1px;
  color: white;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-top: #9E9E9E solid 1px !important;
  border-right: #9E9E9E solid 1px;
  height: 1rem;
  margin-top: 4px;
}

#people-tab.custom-tab--selected, 
#traffic-tab.custom-tab--selected,
#realtime-tab.custom-tab--selected {
  background-color: white !important;
  color: #333333;
  border-top: #1f4675 solid 5px !important;
  border-right: white solid 1px;
  border-radius: 5px 5px 0px 0px;
  margin-top: 0;
}

#people-tab, #traffic-tab, #realtime-tab {
  padding: 20px 0px !important;
}

#realtime-tab span {
  font-size: 12px;
}

.section-banner {
  color: #333333;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  padding: 0.7rem;
  border-bottom: 1px solid #ACACAC;
  width: 98%;
}

/* Main Dashboard Tab
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#top-section-container {
  height: 50%;
  min-height: 302px;
  flex-direction: row;
  display: flex;
  max-width: 100%;
  /*width: 100%;*/
  padding-left: 0.8rem;
}

#bottom-section-container {
  height: 50%;
  min-height: 302px;
  flex-direction: row;
  display: flex;
  max-width: 100%;
  /*width: 100%;*/
  padding-left: 0.8rem;
}



#metric_header > div {
  font-weight: bold;
  font-size: 1.35rem;
  line-height: 3rem;
}

#m_header_5 {
  margin-top: 0rem !important;
}

.metric-row {
  font-size: 1.3rem;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center; /* vertical center row items*/
}

.metric-row:hover {
  background-color: #0F1328;
}

/*Dash Daq Graduatebar */
#Diameter_OOC_graph > div > div,
#Etch1_OOC_graph > div > div,
#Film-Thickness_OOC_graph > div > div,
#Metric4_OOC_graph > div > div,
#Etch2_OOC_graph > div > div,
#Line-Width_OOC_graph > div > div,
#Overlay_OOC_graph > div > div,
#Volume_OOC_graph > div > div {
  width: 100%;
  background-color: #1e2130 !important;
}

#quick-stats.row {
  background-color: white;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-left: 0 !important;
  margin-right: 0 !important;
  height: 100%;
  overflow-y: auto;
}

#manual-table th, #manual-table td {
  vertical-align: top;
}

#chart-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 4;
  border-top: #D9D9D9 solid 0.8rem;
  /* border-left: #D9D9D9 solid 0.8rem; */
  background-color: white;
}

#map-container {
  height: 100%;
  /* flex: 1 1 auto; */
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}

#map-graph {
  width: 100%;
  height: 100%;
}

#count-container {
  height: 100%;
  margin: 0;
  border-left: #D9D9D9 solid 0.8rem;
  flex: 1 1 auto;
  background-color: white;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: bold;
}

#count-container #total-count {
  margin: 1rem 0;
  /* font-weight: bold; */
}

#count-container #total-count span{
  font-size: 1.4rem;
}


#count-container #total-count div{
  border-left: 5px solid red;
  font-size: 1.8rem;
  padding: 0.8rem;
}

#count-container #location-counts {
  padding-left: 0.8rem;
  /* padding-right: 17px; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 290px;
  overflow-y: scroll;
  overflow-x: auto;
  border: 1px solid #D9D9D9;
  -webkit-overflow-scrolling: auto;
}

#count-container #location-counts span{
  font-size: 1.4rem;
}

#count-container #location-counts div{
  border-left: 3px solid #1F4675;
  font-size: 1.6rem;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
}

#class-container {
  height: 100%;
  margin: 0;
  border-left: #D9D9D9 solid 0.8rem;
  flex: 1 1 auto;
  background-color: white;
  padding-left: 0.8rem;
}

#pyramid-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: #D9D9D9 solid 0.8rem;
  border-left: #D9D9D9 solid 0.8rem;
  background-color: white;
  z-index: 4;
}

#piechart-generation,
#piechart-gender {
  width: 45%;
  height: 100%;
}


#piechart-generation.plot-container plotly, 
#piechart-gender.plot-container plotly {
  height: 100%;
}

#line-chart {
  width: 100%;
  height: 89%;
  padding: 1rem;
}

#pyramid-chart {
  width: 100%;
  height: 88%;
  padding: 1rem;
}

.map-panel {
  width: 39.72367%;
}

.count-panel {
  width: 18.78218%;
}

.class-panel {
  width: 41.49415%;
}

.chart-panel {
  width: 58.50585%;
}

.pyramid-panel {
  width: 41.49415%;
}

.section-banner-with-colorscale {
  display: flex;
  justify-content: space-between;
}

.colorscale-contents {
  display: flex;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  width: 100%;
  border: none;
}

#card-1 iframe {
  height: 210px;
  margin-left: 2rem;
}

#card-1 span {
  margin: 0 0.5rem;
}

#utility-card {
  margin: 1.5rem 0 1rem 0;
  display: flex;
  flex-direction: row;
}
/* #utility-card.card-traffic {
  margin: 4rem 0 1rem 0;
} */

#stop-button > div > button:hover {
  color: #91dfd2 !important;
}

#manual-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  margin-left: 6rem;
  max-width: 888px;
}

#manual-top {
  width: 80%;
  height: 50px;
  padding: 12px 10px 0px 15px;
  color: white;
  background-color: #1F4675;
  border-radius: 10px 10px 0px 0px;
}

#manual-bottom {
  width: 80%;
  height: 100%;
  padding: 20px 15px 0px 15px;
  background-color: white;
  border-radius: 0px 0px 10px 10px;
}

#manual-table {
  height: 250px;
}
/* Tab1 content
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#set-specs-intro-container {
  font-weight: bold;
  margin: 8rem 5rem 1rem;
  font-size: 1.6rem;
}


#metric-select-title {
  color: darkgray;
}

#button-div {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

#value-setter-view-btn {
  margin-left: 20px;
}

#value-setter-panel {
  line-height: 2;
}

#value-setter-panel-header {
  font-weight: bold;
  color: darkgray;
  line-height: 1;
  padding: 2rem 0;
  border-bottom: 1px solid #4b5460;
}

#value-setter-panel-header > div {
  text-align: right;
}

#value-setter-view-btn, #value-setter-set-btn {
  border: 1px solid #4B5460;
  color: darkgray;
}

#value-setter-set-btn:hover, #value-setter-view-btn:hover {
  color: #91dfd2;
  border-color: white;
}

#value-setter-panel-usl, #value-setter-panel-lsl, #value-setter-panel-ucl, #value-setter-panel-lcl {
  padding: 1rem 0;
}

.output-datatable {
  margin: 2rem 0rem 2rem 2rem;
  line-height: 3;
  align-self: flex-end;
  width: 80%;
}

/*Dropdown*/
.setting-input {
  width: 100% !important;
  height: 100%;
}

.react-numeric-input, .react-numeric-input input {
  width: 100% !important;
}

.react-numeric-input input {
  background-color: #242633 !important;
  border-color: darkgray !important;
  color: white !important;
}

.react-numeric-input b:nth-child(2) i {
  border-color: transparent transparent white !important;
}

.react-numeric-input b:nth-child(3) i {
  border-color: white transparent transparent !important;
}


/* Dropdown
----------------------------------------------*/

/*Dropdown items*/
.Select-control, .Select-multi-value-wrapper, .Select-menu-outer div {
  background-color: white;
}

/*Dropdown items*/
.Select-control, .Select, .Select-value-label, .Select-clear-zone {
  color: #333333;
}


/*Dropdown items*/
.Select-menu-outer {
  background-color: white;
  border: 1px solid #767676 !important;
}

/*Dropdown items*/
.Select-menu-outer div:hover {
  background-color: white !important;
  cursor: pointer;
}

/*Dropdown arrow + delete button*/
.Select-control, .Select-control > span {
  color: #333333;
  background: white !important;
}

/*Placeholder*/
.Select.has-value.Select--single > .Select-control .Select-value .Select-value-label, .Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value .Select-value-label {
  color: #333333 !important;
}

/*Placeholder*/
.Select--single > .Select-control .Select-value, .Select-placeholder {
  /*border: 1px solid darkgray;*/
  border-radius: 2px;
  background-color: white;
  cursor: pointer;
}


.Select.is-focused:not(.is-open) > .Select-control {
  border-color: #91dfd2 !important;
}

/* Container
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#app-container {
  /* background: #ffffff; */
  color: #333333;
  margin: 1rem 2rem;
  max-width: 100%;
  width: 100%;
  height: calc(100vh - 10rem - 1px);
}

#app-content {
  background: inherit;
  padding: 0;
  width: 100%;
  max-width: 100%;
  height: calc(100% - 35px);
}

#settings-menu {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-evenly;
  margin: 4rem 5rem 1rem;
}

#metric-select-menu {
  flex: 1 1 0;
}

#value-setter-menu {
  flex: 1 1 30%;
  margin-left: 5rem;
  display: flex;
  flex-direction: column;
}

#status-container {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}

iframe {
  width: 196.66px;
  height: 351px;
}


#graphs-container {
  background-color: #D9D9D9;
  display: flex;
  flex-direction: column;
  flex: 3 1;
  /* max-width: calc(75%); */
  width: 70%;
}


/* Tab 2 Quick stats
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#quick-stats {
  border-right: #D9D9D9 solid 0.8rem;
  width: 348px;
  min-height: 604px;
}

/* #operator-led {
  width: 200px;
}

#operator-led > div {
  width: 80%;
  margin: auto;
}

#operator-led > div > div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#operator-led > div > div svg:nth-child(1) {
  margin-left: -1rem;
} */

#progress-gauge > div, #progress-gauge > div > div, #progress-gauge > div > div > div {
  width: 100%;
  text-align: center;
}

#progress-gauge svg {
  width: 80%;
  height: auto;
}

#progress-gauge > div > div > div > div {
  color: white !important;
}

/*pressure-gauge track*/
.eUJyCY .track {
  stroke: #f4d44d !important;
  stroke-width: 10;
}

.eUJyCY .track.progress {
  stroke: #fff3c5 !important;
}

/* Tab 2 Specs
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#stop-button > div > button {
  color: white !important;
  background-color: #1d202d !important;
  border: 1px solid #4B5460 !important;
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
}

#stop-button > div > button:hover {
  color: #91dfd2 !important;
  border-color: white !important;
  background-color: #1d202d !important;
}

.card table {
  margin-left: 2rem;
  font-size: 12px;
}

.card table th label {
  margin-top: 4px;
}

.card P {
  margin: 1rem 0rem 0rem 2rem;
  color: inherit;
  font-weight: bold;
  align-self: flex-start;
  font-size: 14px;
}

#card-2 .scale, #card-2 .needle, #card-2 .needle-knob {
  display: none !important;
}
#date-div {
  display: flex;
  width: calc(100% - 2rem);
}
#dates {
  font-size: 12px;
  margin-left: 2rem;
  /* width: 145px; */
}
#date-list {
  font-size: 12px;
  height: 23.19px;
  margin-left: 1rem;
  width: 100%;
  border-radius: 2px;
}

input[type="search"] {
  -webkit-appearance: searchfield;
}
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: searchfield-cancel-button;
}
#input-dates {
  font-size: 12px;
  margin-left: 2rem;
  width: 280px;
  height: 3rem;
}
.class-sunday {
  color: red !important;
}
.class-saturday {
  color: blue !important;
}

#startstamp, #endstamp {
  height: 23.19px;
  padding: 0;
  font-size: 12px;
  width: 65px;
  border: 1px solid #767676;
  border-radius: 2px;
  padding-left: 0.5rem;
}

#locations {
  border-left: 1px solid #767676;
  width: 293px;
  height: calc(120px + (100vh - 750px));
  min-height: 120px;
  max-height: 312px;
  overflow-y: scroll;
  position: relative;
  -webkit-overflow-scrolling: auto;
}
/* #locations.locations-traffic {
  height: 240px;
} */

#locations label,
#generations label,
#cartype label,
#genders label {
  height: 24px;
  padding: 2px;
  border-bottom: 1px solid #767676;
}
#locations input,
#generations input,
#cartype input,
#genders input {
  margin: 0px 36px 0px 16px;
  position: relative;
}
#locations::before {
	position: absolute; /*--positionを追加--*/
	/* top: 0;
	left: 100%; */
	margin: 0 49px;
	content: "";
	width: 1px; /*--縦線の太さ(幅)--*/
	height: 312px;
	background-color: #767676; /*--縦線の色--*/
}
#locations.expansion::before {
  height: 384px;
}
#locations::after {
	position: absolute; /*--positionを追加--*/
	top: 0px;
	/* left: 100%; */
	margin: 0 279px;
	content: "";
	width: 1px; /*--縦線の太さ(幅)--*/
	height: 312px;
	background-color: #767676; /*--縦線の色--*/
}
#locations.expansion::after {
  height: 384px;
}

#generations, #cartype {
  position: relative;
  border-left: 1px solid #767676;
  width: 180px;
  height: 96px;
}

#generations::before, #cartype::before {
	position: absolute; /*--positionを追加--*/
	/* top: 0;
	left: 100%; */
	margin: 0 49px;
	content: "";
	width: 1px; /*--縦線の太さ(幅)--*/
	height: 100%;
	background-color: #767676; /*--縦線の色--*/
}
#generations::after, #cartype::after {
	position: absolute; /*--positionを追加--*/
	top: 0px;
	/* left: 100%; */
	margin: 0 179px;
	content: "";
	width: 1px; /*--縦線の太さ(幅)--*/
	height: 100%;
	background-color: #767676; /*--縦線の色--*/
}

#genders {
  position: relative;
  border-left: 1px solid #767676;
  width: 150px;
  height: 48px;
}

#genders::before {
	position: absolute; /*--positionを追加--*/
	/* top: 0;
	left: 100%; */
	margin: 0 49px;
	content: "";
	width: 1px; /*--縦線の太さ(幅)--*/
	height: 48px;
	background-color: #767676; /*--縦線の色--*/
}
#genders::after {
	position: absolute; /*--positionを追加--*/
	top: 0px;
	/* left: 100%; */
	margin: 0 149px;
	content: "";
	width: 1px; /*--縦線の太さ(幅)--*/
	height: 48px;
	background-color: #767676; /*--縦線の色--*/
}



/* Tab 2 metric row
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.metric-row-button {
  border: none;
  padding: 0px 0px;
  color: #95969A;
  font-size: 1rem;
  letter-spacing: 0.02rem;
}

.metric-row-button:hover {
  border: none;
  color: white !important;
}

#metric-div {
  padding: 1rem 2rem 1rem 1rem;
}

#metric-rows {
  overflow-y: scroll;
  width: 100%;
  height: 30rem;
}

/*
  ##Device = Most of the Smartphones Mobiles / ipad (Portrait)
  */
@media only screen and (max-width: 950px) {

  body {
    font-size: 1.3rem;
  }

  #big-app-container {
    padding: 1rem;
  }

  .banner {
    flex-direction: column-reverse;
    padding: 1rem 0.5rem;
  }

  #banner-text {
    display: flex;
    align-items: center;
  }

  .banner h5 {
    font-size: 1.4rem;
  }

  .banner h6 {
    font-size: 1.3rem;
  }

  #banner-logo button {
    display: none;
  }

  .banner Img {
    height: 3rem;
    margin: 1rem;
  }

  #app-container {
    height: auto;
  }

  #set-specs-intro-container {
    margin: 4rem 2rem 0rem 2rem;
    font-size: inherit;
  }

  #settings-menu {
    margin: 2rem;
    flex-direction: column;
  }

  #settings-menu > div {
    width: 100%;
    flex: none;
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    margin: 2rem 0rem;
  }

  #value-setter-panel-header {
    display: none;
  }

  #button-div {
    display: block;
    text-align: center;
  }

  #button-div button {
    margin: 1rem auto;
    display: block;
  }

  .output-datatable {
    align-self: center;
    margin: 2rem;
  }

  #status-container, #top-section-container, #bottom-section-container {
    flex-direction: column;
    height: auto;
  }

  #quick-stats {
    max-width: 100%;
  }

  #graphs-container {
    flex: 1;
    max-width: 100%;
    width: 100%;
  }

  #top-section-container > div,
  #bottom-section-container > div {
    width: 100%;
    height: auto;
  }

  #card-1 P, #card-2 P {
    align-self: auto;
  }

  /*Removing borders}*/
  #class-container {
    border-left: none;
  }

  #quick-stats {
    border-right: none;
  }

}

@media only screen and (max-width: 600px) {
  /* Display measurement row contents block-level on mobile*/
  /** Display every row content in block*!*/
  #metric_header {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  #metric-rows {
    height: fit-content;
  }

  #value-setter-panel {
    line-height: 2.5;
  }

  .metric-row {
    flex-direction: column;
    height: fit-content !important;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid #1E2130;
    border-bottom: 1px solid #1E2130;
  }

  #metric-rows .column, #metric-rows .columns {
    width: 100% !important;
    float: none;
    margin: 0.25rem 0 !important;
    padding-left: 50%;
    position: relative;
  }

  #metric-rows .column:before, #metric-rows .columns:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }

  /** Attach header vertically to table */
  .metric-row > div {
    height: 30px;
    line-height: 30px;
    text-align: center;
  }

  /*Hide Sparkline*/
  .metric-row > div:nth-of-type(3) {
    display: none;
  }

  .metric-row > div:nth-of-type(6) > div {
    margin-top: 6.5px !important;
  }

  /*Add table header column*/
  .metric-row > div:nth-of-type(1):before {
    content: "Parameter";
  }

  .metric-row > div:nth-of-type(2):before {
    content: "Total Measurement";
  }

  .metric-row > div:nth-of-type(3):before {
    content: "   ";
  }

  .metric-row > div:nth-of-type(4):before {
    content: "OOC %";
  }

  .metric-row > div:nth-of-type(5) {
    margin-top: 0 !important;
  }

  .metric-row > div:nth-of-type(5):before {
    content: "Out of Control";
  }

  .metric-row > div:nth-of-type(6):before {
    content: "Pass / Fail";
  }

  .output-datatable {
    width: auto;
  }
}

@media screen and (max-width: 800px) {
  #people-tab.custom-tab {
    margin-right: 0;
  }

  #traffic-tab.custom-tab {
    margin-left: 0;
  }
}
