body {
  font-family: Arial, Helvetica, sans-serif;
}

table {
  border-collapse: collapse;
  margin: 25px 0;
  min-width: 400px;
  width: 100%;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.2),
    0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

table td {
  padding: 12px 15px;
}

table tbody tr {
  border-bottom: 1px solid #dddddd;
}

table tbody tr:last-of-type {
  border-bottom: 2px solid #0971ce;
}

table tbody tr:first-of-type {
  border-top: 2px solid #0971ce;
}

#queue-table {
  margin-top: 50px;
}

td {
  padding: 5px;
}

td a {
  color: black;
}

td span {
  padding: 10px;
}

#canvas {
  border: 2px solid black;
}

#menu {
  background-color: #0971ce;
  overflow: hidden;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.2),
      0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

#logo {
  width: 140px;
  height: 47px;
  float: left;
  left: 10px;
}

#planOrder, #addOrder, #addOrders {
  padding: 20px;
  padding-bottom: 0;
}

#addOrder button, #addOrders button, #getOrder button, #assignForm input[type=submit] {
  padding: 13px 20px 14px;
}

#assignForm, #notes {
  padding: 20px;
}

#updateBtn {
  float: right;
  margin-top:-63px;
  padding: 13px 20px 14px;
}

#cap-input {
  margin: 20px;
}

#graph {
  border-top: 2px solid #0971ce;
  border-bottom: 2px solid #0971ce;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.2),
      0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

#warnings {
  padding: 10px;
}

#search {
  float: right;
  margin-right: 20px;
  padding-left: 40px;
  background-image: url('search-icon.png');
  background-size: 20px;
  background-position: 10px 10px;
  background-repeat: no-repeat;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
  
#menu li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #0860bd;
}

.center-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 90vh;
}

.connect-btn {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  background-color: #0971ce;
  color: white;
  padding: 13px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border: none;
  width: 100%;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.2),
      0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

.connect-btn:hover {
  background-color: #0860bd;
}

select {
  -webkit-appearance: none;
  -moz-appearance: nonel
  appearance: none;
  padding: 12px 20px;
  border: none;
  background-color: #f5f5f5;
  border-bottom: 3px solid #0971ce;
  outline: none;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.2),
      0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=text], input[type=password], input[type=datetime-local], textarea {
  padding: 12px 20px;
  border: none;
  background-color: #f5f5f5;
  border-bottom: 3px solid gray;
  outline: none;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.2),
      0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

input[type=text]:focus, input[type=password]:focus, input[type=datetime-local]:focus, textarea:focus {
  background-color: lightgray;
  border-bottom: 3px solid #0971ce;
  -webkit-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

input[type=number] {
  padding: 5px;
  width: 100px;
}

.form-control-label {
  font-size: 10px;
  color: #6C6C6C;
  font-weight: bold;
  letter-spacing: 1px;
  float: left;
}

.order-btn {
  background-color: #0971ce;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border: none;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.2),
      0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

.order-btn:hover {
  background-color: #0860bd;
}

.order-name:hover {
  cursor: pointer;
}

.graph-ctl {
  float: left;
  padding: 5px 10px;
}

  /* Popup container */
  .popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 300px;
  background-color: #ac3f3f;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -150px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #ac3f3f transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
} 

textarea {
  width: 20%;
}

/* #0971ce */
