/* Remove the navbar's default margin-bottom and rounded borders */
.navbar {
    margin-bottom: 0;
    border-radius: 0;
  }

  /* Set height of the grid so .sidenav can be 100% (adjust as needed) */
  .row.content {
    height: 450px
  }

  /* Set gray background color and 100% height */
  .sidenav {
    padding-top: 20px;
    background-color: #f1f1f1;
    height: 100%;
  }

  /* Set black background color, white text and some padding */
  footer {
    background-color: #222;
    color: white;
    padding: 15px;
  }

  footer p {
    margin-bottom: 0;
    font-size: 14px;
  }

  .navbar-inverse .navbar-brand {
    color: #fff !important;
    font-size: 22px;
  }

  .float-none {
    float: none !important;
  }

  .main-content {
    padding: 15px;
  }

  .main-content p {
    font-size: 16px;
  }

  .sidebar {
    padding: 15px;
    background-color: #fff;
    display: block;
  }

  /* On small screens, set height to 'auto' for sidenav and grid */
  @media screen and (max-width: 767px) {
    .sidenav {
      height: auto;
      padding: 15px;
    }

    .row.content {
      height: auto;
    }

    embed {
      display: none;
    }

    .navbar-inverse .navbar-brand {
      font-size: 18px;
      padding: 10px;
    }
  }