html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Fira Sans';
  }
  
  body {
    background: white;
    margin-bottom: 50px;
  }

  /* sidebar */
  .sidebar {
    width: 250px;
    height: 100vh;
    background-color: #332D56;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    z-index: 999;
  }
  
  .sidebar-header {
    margin-bottom: 1rem;
  }
  
  .sidebar .logo {
    /* height: 36px; */
    margin-top: -100px;
    background-color: #a1cbc7;
  }
  
  /* .sidebar .brand {
    font-size: 25px;
    font-weight: bold;
    color: #0848b7;
    background-color: #000000;
  } */

  .sidebar-nav h2 {
    font-size: 20px;
    color:  #9fced1;;
    margin-bottom: 10px;
  }
  
  .sidebar ul {
    border-width: 3px;
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
    gap: 0.4vh;
  }
  
  .sidebar li {
    transition: transform 0.2s ease-in-out;
    margin-bottom: 1px;
    margin-top: 1px;
    height: 45px;
    padding: 0;
    box-sizing: border-box;
  }

  .sidebar li a {
    font-size: 18px; color: #cab5ee;
    border-radius: 12px; 
    transition: transform 0.2s ease-out, 
    background-color 0.2s ease-out, 
    box-shadow 0.2s ease-out, 
    color 0.2s ease-out; 
    
    will-change: transform, 
    background-color,
    box-shadow, 
    color;
  }
  
  .sidebar li a:hover {
    transform: scale(1.05);
    background-color: #9fced1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    font-weight: 700;
}


  .main-content {
    margin-left: 11vw;
    padding: 1rem;
    overflow: auto;
    flex-grow: 1;
    font-family: 'Fira Sans';
    z-index: 900;
    overflow-x: auto; 
    padding-left: 100px 
  }

  /* Footer */
  .footer {
    background: #000000;
    color: white;
    text-align: center;
    /* padding: 15px; */
    position: fixed;
    bottom: 0;
    /* left: 20vw; */
    height: 40px;
    width: 100vw;
    z-index: 1000;
  }
  
  .main-header {
    margin-top: 0px;
    display: flex;
    align-items: center;
    background-color: rgb(255, 255, 255);
    color: #3f3e3e;
    margin-left: 11vw;
    /* height: 130px; */
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    margin-bottom: 20px;
    overflow-x: auto; 
    padding-left: 100px 
  }

  .header-right {
    flex: 1;
    padding-left: 20px;
    padding-top: 40px;
    margin-bottom: 20px;
  }
  
  /* Title */
  .header-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
  }
  


#main_logo {
  height: 120px; 
  width: 160px; 
  transform: scale(1.2); 
  margin-left: 5px; 
  margin-top: -4px;
  padding-left:5px;
  
}


.nav-bar-logo {
  max-width: 160px; 
  height: auto;
}


hr {
  color: #ffffff;
}

button {
  color: #4E6688;
}
