.nav-container {

    margin-top: 2vh !important;
    margin-bottom: 55px;
    margin-right: 5vh !important;
    margin-left: 3vh !important;
  }
  .navbar {

    overflow: hidden;
    background-color: #ffffff00;
    border-bottom: 1px solid #2c2c2c4e;
  }



  .navbar a {
      float: left;
      display: block;
      color: rgb(0, 0, 0);
      text-align: center;
      padding: 14px 20px;
      text-decoration: none;
  }

  .dropdown {
      float: left;
      overflow: hidden;
  }

  .dropdown .dropbtn {
      font-size: 16px;
      border: none;
      outline: none;
      color: rgb(0, 0, 0);
      padding: 14px 16px;
      background-color: inherit;
      font-family: inherit;
      margin: 0;
  }

  .navbar a:hover, .dropdown:hover .dropbtn {
      background-color: #1c41fb;
      color: rgb(255, 255, 255);
  }

  .dropdown-content {
      display: none;
      position: absolute;
      background-color: #f9f9f9;
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
      z-index: 1;
  }

  .dropdown-content a {
      float: none;
      color: black;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
      text-align: left;
  }

  .dropdown:hover .dropdown-content {
      display: block;
  }

  .column {
      float: left;
      width: 250PX;
      padding: 10px;
      background-color: #ccc;
      height: 250px;
  }

  .navbar a.right {
      float: right;
  }

  .logo {
      float: left;
      margin-right: 2vh;
      height: 100px;
      width: 90px;
  }

  .navbar .icon {
    display: none;
  }


/* Media query for mobile devices */
@media screen and (max-width: 767px) {

  .navbar .icon {
    display: flex;
  }
  .icon {
    position: absolute;
    top: 10px; /* Adjust the top margin as needed */
    right: 10px; /* Adjust the right margin as needed */
    font-size: 25px;
  }
  .icon.selected {
    background-color: blue; /* Define the selected background color */
    color: white; /* Define the selected text color */
  }
  

  .logo {
    position: absolute;
    top: 10px; /* Adjust the top margin as needed */
    left: 10px; /* Adjust the right margin as needed */
    height: 80px;
    width: 70px;
  }

  .nav-container {
    margin-bottom: 30px;
  }

  .navbar {
    margin-top: 70px;;
    margin-left: 80px;
  }


  .navbar-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #f9f9f9;
    z-index: 1;
    text-align: center;
    border-bottom: 1px solid #000000;

  }
  
  .navbar-links a {
    display: flex; /* Display horizontally */
    width: 100%;
    padding-top: 20px ; /* Adjust padding */
    padding-bottom: 20px ; /* Adjust padding */
    justify-content: center;
    color: black;
    border-bottom: 1px solid #00000088;

  }

  .navbar a.right {
    float: left;
}







  .navbar.active .navbar-links {
    display: block;
  }
}
