.pushable{
    width:100%;
    margin-bottom:5px;
}
.front{
    font-size: 1rem;
}
.page{
    margin-left:200px
}
.addButton{
    background-color: #156CC9;
    height: 34px;
    padding: 0px 10px 0px 10px;
    font-size: 14px;
}
td{
    text-align: left !important;
    color: #242424;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 141.667% */
}

th{
    color: #667085;
    text-align: center !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 600 !important;
    line-height: 16px; /* 116.667% */
    padding: 0.6em !important;
}

.headerText{
    color: #333;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 550;
/*    line-height: 2.25rem;  150% */
}

.searchIcon{
    position: absolute;
    top: 50%;
    left: 5px; /* Adjust as needed */
    transform: translateY(-50%);
    /*    width: 20px;  Adjust as needed 
        height: 20px;  Adjust as needed */
    z-index: 1;
}
.searchInput{

    border: 1px solid var(--Gray-300, #D0D5DD);
    background: var(--White, #FFF);
    padding-bottom: 0px;
    padding-left: 2px;
    border-radius:6px;
    /* Shadow/xs */
    /*box-shadow: 0px 1px 1px 0px rgba(16, 24, 40, 0.05);*/
    
}
#tableHead{
    margin: auto;
}

.tableSubHeading{
    text-align: left !important;
    border-right: 1px solid #E9E9E9;
}
#tableHead{

    background: #FCFCFD;
}
#tableBody{
    border: 1px solid #E9E9E9;
}

.input-group>.form-control:focus{
    z-index: 0 !important;
}
  .pushable {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
  }
  .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
  }
  .edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(
      to left,
      #0e7fe1,
      #0e7fe1,
      #0e7fe1,
      #0e7fe1
    );
  }
  .front {
    display: block;
    position: relative;
    padding: 12px 42px;
    border-radius: 12px;
    font-size: 1.25rem;
    color: white;
    background: #0e7fe1;
    will-change: transform;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
  }
  .pushable:hover {
    filter: brightness(110%);
  }
  .pushable:hover .front {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
  }
  .pushable:active .front {
    transform: translateY(-2px);
    transition: transform 34ms;
  }
  .pushable:hover .shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
  }
  .pushable:active .shadow {
    transform: translateY(1px);
    transition: transform 34ms;
  }
  .pushable:focus:not(:focus-visible) {
    outline: none;
  }