body {
  background: url("../images/Southern_cross_station_night.jpg") no-repeat center
    center fixed;
  -webkit-backdrop-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  height: 100%;
}
.jumbotron {
  background: rgba(0, 0, 0, 0.5);
  margin-top: 2%;
  color: white;
  padding-top: 0;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-radius: 6px;
}

h1,
h2 {
  font-weight: 900;
}

table {
  background-color: transparent;
}

.table {
  max-width: 100%;
  margin-bottom: 20px;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

.panel {
  margin-bottom: 20px;
  /* border-radius: 4px; */
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: #fccc0a;
  animation-duration: 15s;
  animation-name: slidein;
  animation-iteration-count: 1;
}

.panel-body {
  padding: 15px;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel-info > .panel-heading {
  /* color: #31708f; */
  background-color: #0378bb;
  border-color: #fccc0a;
  border-width: 5px;
}

.form-control {
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* used on span glyphicons to enlarge when hovered over*/
.pop:hover {
  transform: scale(1.25, 1.25);
}

/* hides 'Update' button and 'Add Train'/'Update Train' panel */
#update-btn,
#add-panel {
  display: none;
}

/*makes panel backrounds semi-transparent*/
#schedule-panel,
#add-panel {
  background: rgba(255, 255, 255, 0.9);
}

#add-train-btn {
  background-color: #0378bb;
}

@keyframes slidein {
  from {
    margin-left: 80%;
    width: 300%;
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}
