/* div::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    background-color: #f3f3f3;
  }
  
  div::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f3f3f3;
    border-radius: 10px;
  }
  
  div::-webkit-scrollbar-thumb {
    background-color: #888787;
    border-radius: 10px;
  }
  div::-webkit-scrollbar-thumb:hover {
    background: #555;
  } 
  
  body::-webkit-scrollbar {  
    width: 7px;
    height: 7px;
    background-color: #f3f3f3;
  }
  
  body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f3f3f3;
    border-radius: 10px;
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: #888787;
    border-radius: 10px;
  }
  body::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  
  html {
    scrollbar-color: #888787 #f3f3f3;
    scrollbar-width: 7px;
    scrollbar-shadow-color: inset 0 0 6px rgba(0, 0, 0, 0.3);
  } */

#app {
  background-color: white;
  min-height: 100vh;
}

/* for client info dialog */

.min-height-scroll {
  min-height: 300px;
  overflow: auto;
}

.first-letter-capital {
  text-transform: lowercase;
  display: inline-block;
}

.first-letter-capital::first-line {
  text-transform: capitalize;
}
.font-size-small {
  font-size: 12px !important;
}
.border-radius-5 {
  border-radius: 5px !important;
}
.background-light {
  background-color: #F5F7F9 !important;
}