
/* Set all table headers with table class to have different colours */

table.table thead *, table.table th * {
  color: #ffffff;
  /*background-color: #997300;*/
  background-color: #8c6617;
}

/* Don't allow bootstrap to override h3 panel heading sizes */
h3.panel-title {
  font-size:21px;
}

/* Some classes to help with the calendar */

.event-bottling-honey {
  /* TRIANGLE */
  background-color: transparent;
  width: 0;
  height: 0;
  border-bottom: 12px solid #006400;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-radius: 0;
}
.event-bottling-honeycomb {
  /* TRIANGLE */
  background-color: transparent;
  width: 0;
  height: 0;
  border-top: 12px solid #006400;
  border-right: 12px solid transparent;
  border-radius: 0;
}
/* Bottling requires different classes for overdue/complete as it uses
   foreground not background colour */
.event-bottling-overdue {
  border-bottom-color: #ad2121;
  border-top-color: #ad2121;
}

.event-bottling-complete {
  border-bottom-color: #c3c3c3;
  border-top-color: #c3c3c3;
}

.event-packing {
  /* SQUARE */
  background-color: #e3bc08;
  width: 12px;
  height: 12px;
  border-radius:0px;
}
.event-order {
  /* CIRCLE */
  background-color: #1e90ff;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
.event-overdue {
  background-color: #ad2121;
}
.event-complete {
  background-color: #c3c3c3;
}
.event-weekly-report {
  border-bottom-color: #0a0a0a;
  border-top-color: #0a0a0a;
}

img.barcode {
  max-width:400px;
}

.btn-secondary {
  color: white!important;
  background-color: grey;
}

.btn-secondary:hover {
  background-color: dimgrey;
}

span.orca-push {
  color: lawngreen;
}

span.orca-pull {
  color: orange;
}