.navbar {
    background-color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);  
    overflow-x: hidden;
  }
  
  .navbar .nav-link {
    color: black !important;
    font-size: 16px;
    padding: 15px 20px;
  }
  
  .navbar .nav-link:hover {
    background-color: #f1f1f1;
    border-radius: 5px;
  }
  
  .navbar .navbar-toggler-icon {
    background-color: white;
  }
  
  .navbar-nav .nav-item {
    margin-right: 20px;
  }
  
  .navbar-brand img {
    width: 50px;
    height: auto;
  }
  
  .navbar-nav .nav-item i {
    margin-right: 8px;
  }
  
  .navbar-nav .nav-item .nav-link {
    display: flex;
    align-items: center;
  }
  
  .navbar-nav .nav-item a {
    text-decoration: none;
  }