﻿body {
  overflow-y: scroll;
  background-color: #eeeeee;
  margin: 0;
  padding: 0;
  font-family: 'Roboto';
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dataGridHeader {
  -webkit-transition: background 0.25s linear;
  -moz-transition: background 0.25s linear;
  -ms-transition: background 0.25s linear;
  -o-transition: background 0.25s linear;
  transition: background 0.25s linear;
  border-radius: 4px;
}
.dataGridHeader:hover {
  background-color: #ddd;
}

.fakeLink {
  cursor: pointer;
  text-decoration: none;
  color: blue;
}

div:focus {
  outline: none;
}


.axis line, .axis path {
    color: #808080;
    stroke: #808080;
}

/* This is so fragile but there's no other way to style these components easily.. */
.maintenance-view .data-grid-container > div:nth-child(3) > div > div > div:nth-child(5) > div > div:nth-child(even),
.maintenance-view .data-grid-container > div:nth-child(3) > div > div > div:nth-child(4) > div > div:nth-child(even) {
    background-color: #e5e4e2;
}

/* BEGIN Tractor master info page */
.tractor-master-info-detail .MuiSelect-select {
  padding: 0;
  width: 200px;
}

.MuiInput-underline:hover:not(.Mui-disabled):before,
.MuiInput-underline:before {
  left: 0;
  right: 0;
  bottom: 0;
  content: "\00a0";
  position: absolute;
  transition: border-bottom-color 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-bottom: 1px solid rgb(224, 224, 224);
  pointer-events: none;
}

.MuiInput-underline:hover:before,
.Mui-disabled.MuiInput-underline:before {
  left: 0;
  right: 0;
  bottom: 0;
  content: "\00a0";
  position: absolute;
  transition: border-bottom-color 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.Mui-focused {
  background: none;
}
.MuiSelect-select:focus {
  background: none;
}

.MuiInput-underline:after {
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  position: absolute;
  transform: scaleX(0);
  transition: transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;
  border-bottom: 2px solid rgb(76, 175, 80);
  pointer-events: none;
}
/* END Tractor master info page */
