.center {
  text-align: center;
}

.admin-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
}

.admin-wrapper > div {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.admin-wrapper .nav {
  background: #1C2260;
  color: #fff;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.admin-wrapper .nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-wrapper .nav ul li a {
  padding: 1em 3em;
  display: block;
  color: inherit;
  border-bottom: 1px solid #43467F;
}

.upcoming-orders.table {
  width: 100%;
}

.upcoming-orders.table thead {
  font-weight: bold;
}

.upcoming-orders.table td {
  padding: 1em;
}

.upcoming-orders.table tr {
  border-bottom: 1px solid #cecece;
}

.upcoming-orders.table tbody tr:nth-child(even) {
  background: #F4F5FA;
}

.upcoming-orders.table tbody tr:last-child {
  border-bottom: none;
}

