/* Custom styles for SMMFocus Bootstrap theme */
body {
  background-color: #f5f7fa;
}

.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e9f2;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.navbar-brand {
  font-weight: 600;
}

.navbar-nav > li > a {
  color: #2c3e50;
}

.navbar-nav > li > a:hover,
.navbar-nav > .active > a {
  color: #007bff;
}

.card {
  background-color: #ffffff;
  border: 1px solid #e5e9f2;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
}

.card-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e9f2;
  font-weight: 600;
}

.card-body {
  padding: 1.25rem;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  background-color: #0069d9;
  border-color: #0062cc;
}

.form-control {
  border-radius: 4px;
  height: calc(1.5em + .75rem + 2px);
}

.alert {
  border-radius: 4px;
}

.alert-success {
  background-color: #e9f7ef;
  border-color: #d4edda;
  color: #155724;
}
/* Style the well container to look like a card with modern design */
.well {
    background-color: #ffffff;
    border: 1px solid #e9eff4;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    padding: 1.25rem;
}

/* Center the new order form column */
.col-md-8.col-md-offset-2 {
    margin-left: auto;
    margin-right: auto;
}