html,
body {
  height: 100%;
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 14px;
  background-color: cornflowerblue;
}
#main-container {
  .main-container {
    background-color: #fcfcfc;
    border: 1px solid #d6d6ff;
    min-height: calc(100% - 80px);
    display: table;
  }

  border: 2px solid steelblue;
  height: 100%;
  display: contents;

  .btn-primary {
    text-transform: uppercase;
    color: white;
  }
  .navbar {
    border-bottom: 3px solid steelblue;
    a {
      text-transform: uppercase;
    }
    li {
      padding: 2px 10px;
    }
    li.active {
      background-color: cornflowerblue;
      border-radius: 10px;
      a {
        color: white;
      }
    }
    .navbar-collapse {
      justify-content: flex-end;
    }
  }

  .header-text {
    color: darkslateblue;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    border-bottom: 1px solid darkslateblue;
    margin: 10px 0;

    &.normal-font {
      font-size: 14px;
    }
    &.no-underline {
      border-bottom: none;
    }
  }
  .form-check-input {
    border-color: darkslateblue;
  }
  .card-header {
    text-transform: uppercase;
  }

  .form-check {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
  }
}
