* {
  margin: 0;
  padding: 0;
}
/* Initial state: Elements are positioned off-screen and invisible */
.bg-welcome .bg-welcome-2 .image-background {
  opacity: 0;
  transform: translateY(30px); /* Position below */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.bg-welcome .bg-welcome-2 .welcome-text h5,
.bg-welcome .bg-welcome-2 .welcome-text h1 {
  opacity: 0;
  transform: translateY(-30px); /* Position above */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* When the page loads, the 'loaded' class triggers the animations */
.bg-welcome.loaded .bg-welcome-2 .image-background {
  opacity: 1;
  transform: translateY(0); /* Move to original position */
}

.bg-welcome.loaded .bg-welcome-2 .welcome-text h5,
.bg-welcome.loaded .bg-welcome-2 .welcome-text h1 {
  opacity: 1;
  transform: translateY(0); /* Move to original position */
}
/* Initial state for the login form */
.login-form {
  opacity: 0;
  transform: translateY(30px); /* Position below */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Initial state for the login text, icons, and submit button */
#login-heading,
.login-form .icon,
.login-form .submit-button {
  opacity: 0;
  transform: translateY(20px); /* Position slightly below */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animation when the page loads: fade and slide in */
.login-form.loaded {
  opacity: 1;
  transform: translateY(0); /* Move to original position */
}

/* Login Text Animation */
.login-form.loaded #login-heading {
  opacity: 1;
  transform: translateY(0); /* Move to original position */
  transition-delay: 0.1s; /* Slight delay */
}

/* Icon Animation (username and password) */
.login-form.loaded .login-icon {
  opacity: 1;
  transform: translateY(0); /* Move to original position */
  transition-delay: 0.3s; /* Slight delay */
}

/* Submit Button Animation */
.login-form.loaded .submit-button {
  opacity: 1;
  transform: translateY(0); /* Move to original position */
  transition-delay: 0.5s; /* Slight delay */
}

/* Link Animation (Forgot Password) */
.login-form.loaded .forget a {
  opacity: 1;
  transform: translateY(0); /* Move to original position */
  transition-delay: 0.6s; /* Slight delay for the link */
}

/* Panel Links Animation */
.login-form.loaded .panel-flex a {
  opacity: 1;
  transform: translateY(0); /* Move to original position */
  transition-delay: 0.7s; /* Slight delay for panel links */
}
/* Initial state for the login form */
.login-form {
  opacity: 0;
  transform: translateY(30px); /* Position below */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Initial state for the login text, icons, and submit button */
#login-heading,
.login-form .icon,
.login-form .submit-button,
.login-form .panel-flex a {
  opacity: 0;
  transform: translateY(20px); /* Position slightly below */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animation when the page loads: fade and slide in */
.login-form.loaded {
  opacity: 1;
  transform: translateY(0); /* Move to original position */
}

/* Login Text Animation */
.login-form.loaded #login-heading {
  opacity: 1;
  transform: translateY(0); /* Move to original position */
  transition-delay: 0.1s; /* Slight delay */
}

/* Icon Animation (username and password) */
.login-form.loaded .login-icon {
  opacity: 1;
  transform: translateY(0); /* Move to original position */
  transition-delay: 0.3s; /* Slight delay */
}

/* Submit Button Animation */
.login-form.loaded .submit-button {
  opacity: 1;
  transform: translateY(0); /* Move to original position */
  transition-delay: 0.5s; /* Slight delay */
}

/* Link Animation (Forgot Password) */
.login-form.loaded .forget a {
  opacity: 1;
  transform: translateY(0); /* Move to original position */
  transition-delay: 0.6s; /* Slight delay for the link */
}

/* Panel Links Animation */
.login-form.loaded .panel-flex a {
  opacity: 1;
  transform: translateY(0); /* Move to original position */
  transition-delay: 0.7s; /* Slight delay for panel links */
}

/* Welcome Section Text Animation */
.bg-welcome .welcome-text h5 {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.bg-welcome .welcome-text h1 {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.bg-welcome.loaded .welcome-text h5,
.bg-welcome.loaded .welcome-text h1 {
  opacity: 1;
  transform: translateY(0); /* Move to original position */
  transition-delay: 0.3s;
}

/* Welcome Image Animation */
.bg-welcome .image-background img {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.bg-welcome.loaded .image-background img {
  opacity: 1;
  transform: translateY(0); /* Move to original position */
  transition-delay: 0.5s;
}

/* Mobile Version Animation */
.welcome-text-mobile h1 {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.welcome-text-mobile.loaded h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* Animation for logo circle in mobile */
.vid-logo-circal-mobi {
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.welcome-text-mobile.loaded .vid-logo-circal-mobi {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
/* Initial state for login form and other elements */
.login-form {
  opacity: 0;
  transform: translateY(30px); /* Below the original position */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

#login-heading,
.login-form .icon,
.login-form .submit-button,
.login-form .panel-flex a {
  opacity: 0;
  transform: translateY(20px); /* Slightly below */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Login Form Loaded State */
.login-form.loaded {
  opacity: 1;
  transform: translateY(0);
}

.login-form.loaded #login-heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* Icon Animation (username and password) */
.login-form.loaded .login-icon {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* Submit Button Animation */
.login-form.loaded .submit-button {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* Link Animation (Forgot Password) */
.login-form.loaded .forget a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* Panel Links Animation */
.login-form.loaded .panel-flex a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

/* Welcome Section Text Animation */
.bg-welcome .welcome-text h5 {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.bg-welcome .welcome-text h1 {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.bg-welcome.loaded .welcome-text h5,
.bg-welcome.loaded .welcome-text h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* Welcome Image Animation */
.bg-welcome .image-background img {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.bg-welcome.loaded .image-background img {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* Mobile Version Animation */
.welcome-text-mobile h1 {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.welcome-text-mobile.loaded h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* Animation for logo circle in mobile */
.vid-logo-circal-mobi {
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.welcome-text-mobile.loaded .vid-logo-circal-mobi {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
/* Base button styles */
.submit-button {
  transition: all 0.3s ease;
}

/* Animation for button click (scale up and down) */
@keyframes clickAnimation {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1); /* Scale up */
  }
  100% {
      transform: scale(1); /* Scale back to normal */
  }
}

/* Add shake animation */
@keyframes shake {
  0% {
      transform: translateX(0);
  }
  25% {
      transform: translateX(-10px); /* Shake left */
  }
  50% {
      transform: translateX(10px); /* Shake right */
  }
  75% {
      transform: translateX(-10px); /* Shake left */
  }
  100% {
      transform: translateX(0); /* Back to original position */
  }
}

/* Class to apply to the input field when the password is incorrect */
.shake {
  animation: shake 0.5s ease forwards;
}

/* Optionally, style the error message */
.field_error {
  color: red;
  font-size: 14px;
  animation: fadeInError 0.5s ease-in;
}

@keyframes fadeInError {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

/* Trigger the animation on click */
.button-clicked {
  animation: clickAnimation 0.3s ease-out;
}

.mar-b-3 {
  margin-bottom: 2rem !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px !important;
}
.btn-bg-red {
  background-color: red !important;
}
.pd-3 {
  padding: 1rem !important;
}
.bill-generate-in {
  padding: 1rem !important;
  margin: 2px !important;
}
.bill-generate-out {
  padding: 1px !important;
}
.mar-t-4 {
  margin-top: 1.5rem !important;
}
.j-c-b {
  justify-content: space-between !important;
}

.dis-flex {
  display: flex !important;
}
body {
  background-color: #f1f4fa !important;
}
.mlr-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
.main {
  height: 100vh;
  align-items: center;
}
.main-2 {
  align-items: center;
  height: 100vh;
}

.image-background {
  background: rgb(255, 255, 255);
  width: 15vw;
  height: 15vw;
  border-radius: 100%;
  text-align: center;
  align-items: center;
  display: flex;
}
.login-icon {
  font-size: 30px;
  position: absolute;
  padding-left: 13px;
  margin-top: 11px;
  border-right: 2px solid #b0b7bf;
  position: absolute;
  padding-right: 10px;
  color: #6b7886;
}
.bg-welcome {
  justify-items: center;
  background-color: #445569;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0px 50px 50px 0px;
}
.bg-welcome-2 {
  margin: 0;
  position: absolute;
  top: 45%;
  left: 21%;
  transform: translate(-50%, -50%);
}
.image-background img {
  width: 100%;
  padding: 2px;
  text-align: center;
 
}
.welcome-text h5{
  font-size: 17px;
}
.welcome-text {
  text-align: center;
  margin-top: 50px;
}
.field_error{
  color: #bd0000;
}
.welcome-text h1{
  font-size: 50px;
}
.background-image {
  width: 100%;
  height: 100%;
  border-radius: 0px 50px 50px 0px;
  opacity: 0.3;
}
.mar-b-2{
  margin-bottom: 1rem;
}
.welcome-text {
  color: white;
}
.login-form {
  width: 67%;
  margin: auto;
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0px 0px 18px 0px #00000040;
}
.develop {
  text-align: center;
  position: fixed;
  bottom: 10px;
  left: 62%;
  color: #445569;
}

.slct_tst{
  margin-top: 30px;
}
#login-heading {
  color: #445569;
  padding-bottom: 20px;
  font-size: 45px;
  font-weight: 700;
  line-height: 70.19px;
  margin-left: 10px;
}
.table-th-and-tr-width .btn-bg-red{
  color: #fff;
}
.input-container {
  position: relative;
  width: 300px;
}

.input-container input {
  width: 100%;
  padding: 10px 40px;
  box-sizing: border-box;
}

.input-container .icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}
.logininput {
   border:1px solid #d9d9d9  ;
   padding-left: 58px;
   padding-top: 10px;
  padding:12px 10px 12px 58px;
}
.form-check-label {
  color: #445569;
}
.display-table{
    padding: 1rem !important;
}
.forget {
  text-align: end;
  padding: 8px;
}
.forget a {
  text-decoration: none;
  color: #445569;
}
.btn-div-submit {
  text-align: center;
}
.submit-button {
  width: 60%;
  border-radius: 20px !important;
  margin: 21px;
  background-color: #445569 !important;
  color: white;
  font-size: 22px !important;
  height: 50px;
  border: none !important;
}
.header-div {
  background-color: white;
  margin: 10px;
  border-radius: 12px;
}
.logo-name {
  display: flex;
  text-align: center;
}

.vid-logo {
  width: 53px;
  border-radius: 12px;
}
.pathology-name {
  color: #445569;
  margin: 0 !important;
}

.search-bar {
  margin: 3px;
  justify-content: center;
  position: relative;
  display: flex;
}
.search-bar input {
  width: 70%;
  border-radius: 30px;
  border: 2px solid #445569;
  padding: 5px 40px;
}

.input-icon .icon {
  position: absolute;
  left: 16%; /* Adjust for desired spacing */
  top: 48%;
  transform: translateY(-50%);
  pointer-events: none; /* Prevents the icon from capturing clicks */
}
.input-icon {
  width: 50%;
}
#nav-detail-icon {
  position: absolute;
  right: 40px;
  text-align: end;
  top: 20px;
}
.search-bar-mobile{
    display: none;
}
.header-detail-icon-color {
  width: 35px;
  height: 35px;
  color: #445569 !important;
}
.nav-detail-icon-color {
  width: 30px;
  height: 25px;
}
#navbar-text-color {
  display: flex;
  gap: 5px;
  color: #445569;
  border-radius: 16px;
  width: 135%;
}
.navbar-nav {
  gap: 50px;
}

.btn-secondary-new {
  background: #445569 !important;
  color: white !important;
}
.is-active {
  background-color: #445569;
  color: white;
  margin: 0px;
}
.is-active-icon {
  display: flex;
  gap: 10px;
  color: white;
  border-radius: 10px;
}
.bill-generate {
  width: 98%;
}
.bill-invoice-no-input {
  width: 55%;
  background-color: #f3f3f3;
  border: none;
  border-radius: 7px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.mar-x-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}
.mar-x-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}
th,
td {
  padding: 8px;
  text-align: left;
}
#addRowForm,
#editRowForm {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  z-index: 1000;
}
#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.test-select-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  height: 45vh;
  overflow-y: auto;
  display: block;
}
.test-selected-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  height: 40vh;
  overflow-y: auto;
  display: block;
}
th,
td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

.table-hover tr td {
  text-align: center;
}
.table-hover tr:hover {
  background-color: #b2b1b162;
}
th {
  background-color: #f4f4f4;
}

.btn-secondary-new:hover {
  background-color: #3ede61 !important;
}
.table-th-and-tr-width {
  width: 50%;
}
.test-list-width {
  width: 90%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.patientdetails-form {
  width: 23%;
  padding: 8px;
  margin: 20px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #44556915;
}
.patientdetails {
  padding: 5px 50px;
}
.patientdetails-label {
  margin-left: 43px;
}
.filter-tab-content {
  width: 80%;
  background: white;
  border-radius: 12px;
  height: 80vh;
}
.filter-tab-main {
  height: 75vh;
  border-radius: 12px;
}
.income-col-log-2-div {
    padding: 15px !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
    background-color: white;
    margin: 12px;

}
.filter-col-log-2-div {
    padding: 1.5rem !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
}



.nav-link.active {
  background-color: white !important;
  color: #445569 !important;
}
.filter-list {
  color: white !important;
  font-size: 21px;
}

/* pop start*/
.popup {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 12px;
  width: 40%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  margin-top: -25px;
  margin-right: -12px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.filter-pop {
  font-size: 20px;
}
.btn-secondary-new-style {
  border-radius: 25px !important;
}
.filter-input {
  background-color: #d8d8d84a;
  border: 1px solid black;
  border-radius: 6px;
}
.dropdown-width {
  width: 90%;
  background: #d8d8d84a !important;
  text-align: start !important ;
  color: black !important;
  font-size: 20px !important;
}
.text-submit-btn-secondary-new {
  width: 50% !important;
  margin-left: 5%;
  margin-bottom: 20px;
  margin-top: 15px;
}
.icon-jm {
  width: 40px;
  height: 40px;
}
.back-btn {
  background-color: white;
  border: none;
}
.filter-tab-main {
  background-color: #445569;
}
.active-nav-from-list-mobile-view {
  display: none;
}
.bs-gutter-x {
  --bs-gutter-x: 0.5rem !important;
}
.bs-gutter-x-zero {
  --bs-gutter-x: 0rem !important;
}
.plr-3 {
  padding-right: 1rem;
  padding-left: 1rem;
}
.report-detail {
  padding: 10px 45px;
}
.report-detail-input {
  width: 70%;
  border-radius: 4px;
  border: 2px solid #44556959;
}
.report-detail-thead-style {
  background-color: #445569;
  color: white;
  align-items: center;
  margin-bottom: 19px;
  border-radius: 6px;
  padding: 10px 0px;
}
.thead-style {
  background-color: #445569;
  color: white;
}
.report-detail-thead-style-value {
  margin-bottom: 0;
}
.report-detail-thead-style-rang {
  margin-left: 28px;
  margin-bottom: 0;
}
.gen-p-3 {
  padding: 1rem;
}
.dash-icon {
  font-size: 50px;
  text-align: center;
  background: #eceef0;
  color: #445569;
  border: 2px solid white;
  border-radius: 40px;
  width: 76px;
  height: 76px;
  position: relative;
  left: 37px;
}
.total-value {
  width: 65%;
  text-align: center;
  background-color: white;
  border-radius: 8px;
}
.total-value h4 {
  position: relative;
  top: 12px;
}
.total-value p {
  position: relative;
  top: 8px;
}
.mobile-view-h6-test-new{
    display: none;
    
}
.main-mobile-dasboard {
  display: none;
}
.welcome-text-mobile,
.vid-logo-circal-mobi {
  display: none;
}
.mobile-view {
  display: none;
}
.pc-view {
  display: block;
}
.add-new-hr{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    height: 3px;
}



@media  (min-width:846px){
  .totalAmount-submit{
    width: 50%;
    margin: auto;
    margin-top: 30px;
    padding: 10px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #ddd;
  }
  .asdfg{
    font-size: 30px;
  }
  .rosf{
    margin-left: 100px;
  }
  .inv-btn{
    width: 100%;
    padding: 4px 10px;
  }
  .fnl_prc{
    border: none;
    background: unset;
    width: 150px;
    font-size: 30px;

  }
  .totalAmount-submit .row{
    align-items: center;
  }

  

}

@media only screen and (min-width: 846px) and (max-width: 1024px) {
  .bg-welcome-2 {
    left: 22%;
  }
  .develop {
    left: 62%;
  }
}

@media only screen and (max-width: 845px) {
  .form-control {
    padding: 0.4rem 3.5rem !important;
  }
  .mobile-view {
    display: block;
    overflow-x: auto;
  }
  .search-bar {
    width: 96%;
    margin-top: 10px;
  }
  .bill-name-p {
    margin-bottom: 0rem;
  }
  .leptop-view {
    display: none;
  }
  .add-new-hr{
    margin-top: 3px !important;
    margin-bottom: 3px !important;
    height: 3px;
    display: none;
}
  .search-bar input {
    width: 100%;
  }
  .input-icon .icon {
    position: absolute;
    left: 5%;
    top: 48%;
  }
  .welcome-text-mobile,
  .vid-logo-circal-mobi {
    display: block;
  }
  .mobile-view-dis {
    display: none !important;
  }
  .total-value {
    background-color: red;
  }
  .main-2 {
    align-items: center;

  }
  .develop {
    text-align: center;
    position: fixed;
    bottom: 0px;
    left: 0;
    padding: 4px 0;
    color: white;
    width: 100%;
    background-color: #445569;
    border-radius: 12px 12px 0 0;
  }
  .develop-name {
    font-size: 16px;
    height: 22px;
  }
  .pd-10px {
    padding: 10px !important;
  }
  .logininput {
    width: 100% !important;
    border: 1px solid white !important;
  }
  .form-control ::after {
    color: white !important;
  }
  .welcome-text-mobile {
    color: #445569;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-top: 20px;
  }

  .vid-logo-circal-mobi {
    width: 91px;
   
  }
  .mar-b-3 {
    margin-bottom: 1rem !important;
  }
  .bs-gutter-x-zero {
    --bs-gutter-x: 0rem !important;
  }
  .forget a {
    text-decoration: none;
    color: white;
    font-size: 15px;
  }
  .btn {
    background-color: #445569 !important;
    height: 27px;
    text-align: center;
    border: none !important;
    padding: 0px;
    font-size: 15px;
    font-weight: bold;
  }
  #submit-mobile {
    width: 95% !important;
  }
  #totalAmount{
    width: 100%;
    border: none;
    background-color: #989a9c;
    color: #445569;
    font-weight: 900;
    font-size: 25px;
    }
    .asdf{
        display: flex;
        text-align: end;
        color: #445569;
    }
    .totalAmount-submit{    
        position: fixed;
        bottom: 10px;
        left: 14px;
        right: 14px;
    }
    .asdfg{
        width: 100%;
        font-size: 25px;
        font-weight: 700;
    }
  #delete-btn {
    background-color: white !important;
    color: red;
    width: 100%;
  }
  #edit-btn {
    background-color: white !important;
    color: green;
    width: 100%;
  }
  #print-btn {
    border-radius: 0px 0px 0px 15px !important;
    color: white;
    width: 100%;
  }
  #generate-btn {
    border-radius: 0px 0px 15px 0px !important;
    color: white;
    width: 100%;
  }
  .search-bar-mobile{
    display: block;
    width: 96%;
    margin-top: 9px;
  }
  .mobile-view-h6-test-new{
    display: block;
    background-color: #445569;
    color: white;
    padding: 10px 5px;

  }
  .add-new-row{
    height: 35px;
    width: 100%;
  }
  .search-bar-mobile input{
    background-color: white !important;
    color: black !important;
    padding: 6px !important;
  }
  .bill-hr-mobile {
    width: 90% !important;
    height: 1px !important;
    margin: 3px !important;
    margin-left: 13px !important;
    display: none;
  }
  .patientdetails {
    padding: 5px 5px;
  }
  .patientdetails-label {
    margin-left: 3px;
    width: 40%;
  }
  #name-mobile {
    margin-right: 70px;
  }
  #gender-mobile {
    margin-right: 60px;
  }
  #age-mobile {
    margin-right: 84px;
  }
  #referred-mobile {
    margin-right: 33px;
  }
  #address-mobile {
    margin-right: 54px;
  }
  .totalAmount-submit{
    background-color: #989a9c;
    align-items: center;
    padding: 8px;
    margin: -5px !important;
    border-radius: 0px 0px 14px 14px;

    }
  
  .patientdetails-form {
    width: 57%;
    padding: 5px;
    margin: 6px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #44556915;
  }
  .bill-main-mobile {
    border: 2px solid #44556935;
    margin: 25px 0px;
    border-radius: 17px;
    padding-top: 3px;
  }
  .search-bar{
    display: none;
    
  }
  .submit-button {
    background-color: white !important;
    color: #445569 !important;
    width: 70% !important;
    border-radius: 25px !important;
    margin: 19px !important;
    font-weight: 500 !important;
    height: 43px;
  }
  .mobi-up-color {
    background-color: #445569;
    height: 22px;
    border-radius: 0px 0px 12px 12px;
  }
  .forget {
    text-align: end;
    padding: 0px;
  }
  .report-btn-row-mobile{
    margin: 0px !important;
    padding: 0px !important;
  }
  .report-btn-col-mobile{
    margin: 0px !important;
    padding: 0px !important ;
  }
  .report-button-mobile{
    width: 100%;
  }
  .btn-div-submit {
    text-align: center;
    margin-top: 15px;
  }
  .display-table{
    padding: 5px !important;
  }
  .bill-generate-in {
    padding: 2px !important;
  }
  .main {
    padding: 0px !important;
  }
  .login-form {
    width: 98%;
    margin-left: 3px;
    background-color: #445569;
    border-radius: 58px 40px 58px 0px;
    padding: 27px 20px;
    box-shadow: 0px 0px 18px 0px #00000040;
    margin-bottom: 30px;
  }
  #login-heading {
    color: white;
    padding-bottom: 0px;
    font-size: 23px;
    font-weight: 700;
  }
  .bg-welcome {
    display: none;
  }
  .main-mobile-dasboard {
    display: block;
  }
  .main-leptop-dasboard {
    display: none;
  }
  .test-btn-main-mobile{
    margin: 0px;
    padding: 0px 6px;

  }
  .mar-top-5px{     
    margin-top: 5px;
  }
  .test-btn-mobile{
    margin: 0px !important;
    padding: 0px !important;
  }
  .popup-content {
    background-color: #fefefe;
    margin-top: 83%;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 12px;
    width: 100%;
    text-align: center;
}
.mar-x-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}
.mar-x-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}
  .test-btn-mobile button{
    width: 100%;
  }
  #test-edit-btn{
    border-radius: 0px 0px 0px 10px;
}
  #report-edit-btn{
    background-color: #445569;    


  }
  #report-print-btn{

  }
  #Click-for-multi-value{
    margin-top: 10px;
    margin-right: 1rem !important;
    margin-left: 0.5rem !important;
  }
  .text-table-mobile-view{
    border: 1px solid #53565638;
    padding: 7px 5px 0px 5px;
    margin-top: 8px;
    border-radius: 10px;
  }
  #report-view-mobile{
    border-radius: 0px 0px 0px 8px;
  }
  #report-exit-mobile{
    border-radius: 0px 0px 0px 0px;
    border-left: 1px solid white !important;
    border-right: 1px solid white !important;
}
  #report-print-mobile{
    border-radius: 0px 0px 8px 0px;
  }
  .zxcvb{
    margin-left: 0px !important;
    padding: 0px 6px !important;
}
  #test-view-btn{
    border-radius: 0px !important;
    
    border-left: 1px solid white !important;
    border-right: 1px solid white !important;
  }
  #test-delete-btn{
    border-radius: 0px 0px 10px 0px;

  }
  #navbar-text-color {
    width: 100% !important;
  }
  .nav-link {
    padding: 0px !important;
  }
  .active-nav-from-list-mobile-view {
    width: 79%;
    display: block;
  }
  .active-nav-from-list-leptop-view {
    display: none;
  }
  .is-active {
    padding: 0px;
  }
  .is-active-icon {
    color: white !important;
  }
  .icon-dash-mobile {
    font-size: 20px !important;
    margin: 0px;
    font-size: 28px;
  }
  .is-active-mobile-a {
    align-items: center;
    gap: 7px;
  }
  .nav-item {
    margin-right: 10px;
  }
  .is-active-mobile {
    background-color: #445569;
    color: white !important;
    padding: 0 11px;
  }
  .is-active-icon-mobile {
    color: white !important;
  }
  .is-active-h5-mobile {
    font-size: 15px;
  }
  .nav-ul-mobile {
    list-style: none;
    display: flex;
    padding-left: 10px !important;
    background-color: white;
    width: fit-content;
  }
  .a-text-d-none {
    text-decoration: none;
  }
  #nav-detail-icon {
    top: 13px;
    right: 20px;
  }
  .vid-logo {
    width: 18%;
  }

  .pathology-name {
    font-size: 30px;
  }
  .navbar-collapse {
    margin-top: 12px;
  }
  .navbar-nav {
    gap: 25px;
  }
  .test-selector-div {
    padding: 4px;
  }
  .app-name {
    background-color: #445569;
    height: 80px;
    align-items: center;
    display: flex;
    text-align: center;
  }
  .app-name-text {
    color: white;
    width: 100%;
    position: absolute;
    top: 15px;
  }
  body {
    padding: 0px;
    margin: 0px;
    background-color: #f1f4fa;
  }
  .patho-name {
    background: #ffffff;
    width: 90%;
    text-align: center;
    position: absolute;
    top: 52px;
    left: 20px;
    border-radius: 7px;
    color: #3e818a;
    align-items: center;
    font-size: 23px;
    box-shadow: 0px 6px 19px 0px #00000040;
  }
  .fa-solid {
    font-size: 22px ;
    color: white ;
  }
  .patho-name-text {
    width: 73%;
  }
  .nav-and-icon {
    padding: 10px;
    background-color: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 0px 15px 0px #00000040;
    padding: 12px;
    margin: 10px;
  }
  .text-and-icon a {
    text-decoration: none !important;
    color: #445569 !important;
  }
  .bi {
    font-size: 47px;
    color: #445569;
  }
  .text-and-icon {
    padding: 0px !important;
  }
  .home-buttons-main {
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  .gen-p-3 {
    padding: 10px;
  }
  .back-btn {
    display: none;
  }
  hr {
    margin: 10px !important;
  }
  .report-detail {
    padding: 0px 10px;
  }
  .test-values-col {
    padding: 0px 0px !important;
  }
  .pathology-name {
    font-size: 25px;
  }
  #patient-name {
    font-size: 18px;
  }
  .test-values-col {
    padding: 0px 2px !important;
  }
  .report-detail-input {
    width: 85%;
  }
  .patient-number {
    display: none;
  }
  .btn {
    padding: 2px !important;
  }

  .mlr-3 {
    margin-right: 3px !important;
    margin-left: 3px !important;
  }
  .action-btn-d-flex {
    display: flex;
  }
  .table {
    font-size: 10px;
  }
  .action-btn-d-flex button {
    padding: 3px;
    font-size: 10px !important;
  }
  th,
  td {
    padding: 3px !important;
  }
  .table-body {
    font-size: 14px;
  }
  .pc-view {
    display: none;
  }
}






/* codesd */


.panel-flex{
  display: flex;
  gap: 14px;
}
.panel-a{
  border: 1px solid #445569;
  padding: 8px 14px;
  border-radius: 10px;


}
.panel-a a{
  text-decoration: none;
  color: #445569;
  font-weight: 600;
}
.panel-sect{
  margin-bottom: 40px;
}
.actv-lgn{
  background-color: #445569;
  color: #fff;
}
.actv-lgn a{ 
  color: #fff;
}




/* Yuvraj */
/* Yuvraj */
/* Yuvraj */
/* Yuvraj */
/* Yuvraj */
@media only screen and (max-width: 600px) {
  .panel-sect {
    margin-bottom: 20px;
}
.actv-lgn a{ 
  color: #445569 !important;
}

.panel-a a{
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}
.panel-flex {
  display: flex;
  gap: 4px;
  font-size: 14px;
  color: white;
}
.panel-a {
  border: 1px solid white;
  padding: 8px 8px;
  border-radius: 10px;
  color: white;
  background: #445569;
}
.actv-lgn {
  background-color: #FFF;
  color: #445569;
}
.vid-logo-circal-mobi {
  width: 101px;
  position: relative;
  top: -25px;
}
.mobi-login-icon-bc{
  background: white;
  width: 93px;
  border-radius: 47px;
  height: 91px;
  position: absolute;
  text-align: end;
  justify-content: center;
  display: grid;z-index: 99;
  align-items: center;
  top: 100px;
  left: 65%;

}
.fa-solid{
  color: #445569;
}
}


