/*
/* undo global hover
.btn:hover {
  background-color: #563aff;
  border: 1px solid #563aff;
  transform: none; /* Remove the transform
}

/* redo global hover for non-disabled buttons
.btn:not(:disabled):hover {
  color: #fff;
  background-color: #ff4267;
  border-color: #ff4267;
  transform: scale3d(1.06, 1.06, 1.01);
}

/* define how button should look like when it is disabled

.btn.in-file-marker:is(.w-button:disabled) {
  opacity: 0.5;
}
*/

.doctorassistfieldbutton:disabled {
  opacity: 0.5
}


.signup-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000; /* High z-index to ensure it's on top */
    overflow-y: auto; /* In case the content is larger than the screen */
}

.login-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000; /* High z-index to ensure it's on top */
    overflow-y: auto; /* In case the content is larger than the screen */
}

.wait-cursor * {
    cursor: wait !important;
}
