body {
    font-size: .875rem !important;
  }
  
  .feather {
    width: 16px !important;
    height: 16px !important;
    vertical-align: text-bottom !important;
  }
  
  /*
   * Sidebar
   */
  
  .sidebar {
 
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 100 !important; /* Behind the navbar */
    padding: 48px 0 0 !important; /* Height of navbar */
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1) !important;
  }
  
  @media (max-width: 767.98px) {
    .sidebar {
      top: 5rem !important;
    }
  }
  
  .sidebar-sticky {
    position: relative !important;
    top: 0 !important;
    height: calc(100vh - 48px) !important;
    padding-top: .5rem !important;
    overflow-x: hidden !important;
    overflow-y: auto !important; /* Scrollable contents if viewport is shorter than content. */
  }
  
  @supports ((position: -webkit-sticky) or (position: sticky)) {
    .sidebar-sticky {
      position: -webkit-sticky !important;
      position: sticky !important;
    }
  }
  
  .sidebar .nav-link {
    font-weight: 500 !important;
    color: #333 !important;
  }
  
  .sidebar .nav-link .feather {
    margin-right: 4px !important;
    color: #999 !important;
  }
  
  .sidebar .nav-link.active {
    color: #007bff !important;
  }
  
  .sidebar .nav-link:hover .feather,
  .sidebar .nav-link.active .feather {
    color: inherit !important;
  }
  
  .sidebar-heading {
    font-size: .75rem !important;
    text-transform: uppercase !important;
  }
  
  /*
   * Navbar
   */
  
  .navbar-brand {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important;
    font-size: 1rem !important; 
   
  }
  
  .navbar .navbar-toggler {
    top: .25rem !important;
    right: 1rem !important;
  }
  
  .navbar .form-control {
    padding: .75rem 1rem !important;
    border-width: 0 !important;
    border-radius: 0 !important;
  }
  
  .form-control-dark {
   
    background-color: rgba(255, 255, 255, .1) !important;
    border-color: rgba(255, 255, 255, .1) !important;
  }
  
  .form-control-dark:focus {
    border-color: transparent !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .25) !important;
  }