*{margin:0; padding: 0; box-sizing: border-box;}

:root {
    --main-bg-color: #080a0aea;
    --main-text-color: #203fee;
    --second-text-color: #ffff;
    --second-bg-color: #c1efde;
  }
  .primary-text {
    color: var(--main-text-color);
  }
  .secondary-text{
      color: var(--second-text-color);
  }

.header{     /*to apply image at header*/
    width: 100%;
    height: 15vh;
    background-color: white;
    box-shadow: 0 0 30px 0 rgba(5, 2, 2, 0.3); 
    justify-content: left;

}
.container{
   margin-top: 0px;
}
.tophead{
    margin-left: 25px;

}
.tophead h1{
font-size: 1.7rem;
font-weight:bold;
color: blue;
}
.tophead p{
    font-size: 0.8rem;
    font-weight:bold;   
}

.login-section{
    top: 20%;
    width: 100%;
    height: 100vh;
    padding: 80px 0;
    position: relative;
    
}
.mainpage{
    background: white;
    border: 1px solid rgba(194, 193, 193, 0.363);
    box-shadow: 0 0 30px 0 rgba(5, 2, 2, 0.3); 
   
}
.mainpage button{
    height: 35px;
    width: 40%;
}


/*dashboard css starts*/
#wrapper{
    overflow-x: hidden;
     background: linear-gradient(to right,#217dd3 0%,#578ff1c5 0%,#a3ccee 100%);
        
}
#vertical-sidebar {
    min-height: 100vh;
    margin-left: -15rem;
    -webkit-transition: margin 0.25s ease-out;
    -moz-transition: margin 0.25s ease-out;
    -o-transition: margin 0.25s ease-out;
    transition: margin 0.25s ease-out;
  }
  #vertical-sidebar .list-group {
    width: 15rem;
  }
#pagecontent{
    
    min-width: 100vw;
}
#vertical-sidebar.active{
    content-visibility: hidden;

}
#menu-toggle {
    cursor: pointer;
  }
  .list-group-item {
    border: none;
    padding: 20px 30px;
  }
  .list-group-item.active {
    background-color: transparent;
    color: var(--main-text-color);
    font-weight: bold;
    border: none;
  }
.tbl_head_format{
  font-weight: bold;
  font-size: 20px;
  color:var( --second-text-color); 
}
.tbl_format{
  font-size: 15px;
  color:var( --main-bg-color);  
}
.adjusttable{
  width: 100%;
  text-align: center;
   /* display: block; */
}


  @media (min-width: 768px) {
    #vertical-sidebar {
      margin-left: 0;
    }
  
    #pagecontent {
      min-width: 0;
      width: 100%;
    }
  
    #wrapper.toggled #vertical-sidebar {
      margin-left: -15rem;
    }
  }



 /* .pagecontent .topbar{
    width: 100%;
    height: 5rem;
    background: rgb(65, 120, 240);
}

.sidebar{

    min-height: 100vh;
    margin-left: -15rem;
    transition: margin 0.25s ease-out;
  

}
.sidebar .list-group{
    width: 15rem;
} */

/* .sidebar.active{
    width: 3rem;
}

.sidebar-heading1{
    font-size: 15px;
    font-weight: bold;
}       
.sidebar-heading2{
    font-size: 10px; 
    font-weight: bold;
} 


.list-group-item.active {
    background-color: transparent;
    color: var(--main-text-color);
    font-weight: bold;
    border: none;
  }*/
