body {
  background: #e5e5e5;
}

#dataTable {
  background: #fff;
}


/* --- LOGIN --- */

#login {
  position: fixed;
  margin: 0;
  top: 0;
  left: 0;
  
  width: 100%;
  height: 100%;
  background: linear-gradient(60deg, #1ea9e1, #148fb8);
  
  padding-top: 10%;
}

#login .btn.btn-primary {
  margin-top: 20px;
  background-color: #333;
}

#login .form-control {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

#login input {
  padding: 10px;
}

#login img {
  width: 100%;
  margin-bottom: 20px;
}

#login .help-block {
  color: #721c24;
}

.form-signin {
  max-width: 420px;
  padding: 15px;
  margin: 0 auto;
}

/* eof login */


/* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  background-color: #f1f1f1;
  padding: 20px 10px;
  margin-bottom: 30px;
}

/* Style the header links */
.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active/current link*/
.header a.active {
  background-color: dodgerblue;
  color: white;
}

/* Float the link section to the right */
.header-right {
  float: right;
  margin-top: 11px;
}

.header-logo {
  width: 200px;
}

.refresh-btn, .add-btn {
  margin: 0 0 15px 0;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
  .header {
    margin-bottom: 5px;
  }
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
}