.full-container{
    height: 100vh;
    background-color: #f0f7ff;
    display: flex;
}

/* Nav bar */

.nav-bar-container {
    width: 250px;
    height: 100vh;
    background-color: #fff;
    border-right: 1px solid #9CA3AF;
    z-index: 1000;    
  }

  .nav-bar{
    position: relative;
    padding: 15px 0;
    height: 100vh;
    overflow: auto;
  }

  .nav-bar-header {
    padding: 0 10px;
    margin-bottom: 15px;
}

  .nav-bar-logo {
    width: 100%;
    height: auto;
  }

  .nav-bar-logo-container-sm{
    display: none;
  }

  .nav-bar-section {
    padding: 5px 20px;
    font-size: 12px;
    color: #777;
    font-weight: bold;
    text-transform: uppercase;
  }

  .nav-bar-item {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    text-decoration: none;
    color: #000;
    transition: background-color 0.2s;
    margin: 4px 8px;
    border-radius: 8px;
}


  .nav-bar-item.active {
    background-color: #BAE0FF;
  }

  .nav-bar-item i {
    margin-right: 12px;
  }

  .nav-bar-item span {
    font-size: 14px;
  }


  .main-content{
    height: 100vh;
    overflow: auto;
  }
  .main-content a{
    text-decoration: none;
    color: #000;
  }

  /* Top Bar */

  .top-bar{
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: #FFFFFF;
    padding: 12px 40px 12px 16px;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }

  .notification{
    padding: 6px 16px;
  }

  .user-name {
    padding: 6px 16px;
    font-size: 16px;
    margin-right: 16px;
    display: flex;
    gap: 8px;
    cursor: pointer;
}
.user-name i {
    background-color: #BAE0FF;
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

  .log-out-btn{
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    padding: 6px 16px;
    display: flex;
    gap: 8px;
    font-size: 16px;
    height: fit-content;
  }

  .log-out-btn-sm {
    display: none;
    color: #000;
    border: 1px solid #9CA3AF;
    border-radius: 0px;
    padding: 4px 16px;
    gap: 8px;
    font-size: 14px;
    height: fit-content;
    position: fixed;
    bottom: 0;
    width: 210px;
    background-color: #ffff;
}

.nav-close{
    display: none;
}


  /* Mobile View  */

  @media (max-width: 768px) {
    .nav-bar-container {
        top: 0;
        bottom: 0;
        position: absolute;        
        width: 210px;
        transition: all 0.3s ease-in-out;
        transform: translateX(-100%);
    }

    .nav-bar-container.nav-active{
        transform: translateX(0);
    }

    .nav-bar{
        padding: 6px 0 34px 0px;
    }

    .log-out-btn{
        display: none;
    }
    .log-out-btn-sm{
        display: flex;
    }

    .nav-bar-logo-container-sm{
        display: flex;
        gap: 6px;
        align-items: center;
    }

    .nav-bar-logo-container-sm img{
        width: 165px;
        height: auto;     
    }

    .top-bar {
        padding: 12px 8px 12px 8px;
    }

    .user-name {
        padding: 6px;
        font-size: 12px;
        margin-right: 0;
        display: flex;
        gap: 4px;
        align-items: center;
    }

    .notification {
        padding: 6px;
    }

    .nav-close {
        display: flex;
        justify-content: end;
        padding: 0px 16px 6px 0px;
    }
  }
  