
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400&display=swap');
*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Width and height of the scroll bar */
::-webkit-scrollbar {
    width: 2px;
    height: 4px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #ffffff;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #727272;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }


/* Main Containers */
.webMainCon{
    position: relative;
    width: fit-content;
    height: 100vh;
    overflow-y: hidden;
    justify-content: space-between;
    align-items:normal;
    display: flex;
    flex-direction: column;
}
/*
main color : #322E7F
*/

.actionBarContainer{
    background-color: black;
    padding: 8px;
    width: 100%;
    min-width: 700px;
}

.actioncn{
    width: 100%;
    min-width: 700px;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.actionLeft{
    width: fit-content;
    justify-content: center;
    align-items: center;
    display: flex;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.actionLeft img{
    width: 100px;
}

.dashboardContainer{
    width: 100vw;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    display: flex;
    overflow-y: auto;
}
.contentContainer{
    width: 100%;
    height: 100%;
    overflow-y: auto;
    min-width: 700px;
}

.navbarContainer{
    max-width: 250px;
    height: 100%;
    max-height: 100%;
    background-color: white;
    border-right: 2px solid rgb(212, 212, 212);
}
footer{
    background-color: white;
    text-align: center;
}

.cnp01{
    width: 100%;
    background: rgb(0, 75, 145);
    padding: 20px;
    height: fit-content;
    min-height: 150px;
}
.profileimgcon{
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    display: flex;
}
.profileimgcon img{
    width: 60%;
    height: auto;
}
.cnp_sub{
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.cnp_txt_cn h5{
    color: white;
    font-weight: normal;
    font-size: .8rem;
}
.cnp_txt_cn h6{
    color: rgb(231, 231, 231);
    font-weight: normal;
    font-size: .7rem;
    text-align: right;
}

.cnp01 button{
    background-color: white;
    border-radius: 20px;
    color: black;
    margin: 5px 0;
}

.actionBarContainer img{
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0 5px;
}

.marginFixer{
    margin-bottom: 60px;
}


.dashboardMain{
    width: 100%;
    height: 100%;
    position: relative;
}

.backgroundBanner{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.backgroundBanner img{
    width: 100%;
    height: 100%;
}