.no-hoverable-btn.q-hoverable:hover > .q-focus-helper {
    opacity: 0 !important;
  }

.resizable-card {
  position: fixed;
  min-width: 200px;
  min-height: 100px;
  border: 1px solid rgb(46, 169, 226);
  background-color: #fff;
  z-index: 1050;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  /* transition: width 0.2s ease, height 0.2s ease, top 0.2s ease, left 0.2s ease; */
}

.resizable-direction {
  position: absolute;
  background: transparent;
}

.resizable-direction.north,
.resizable-direction.south {
  height: 5px;
  left: 0;
  right: 0;
  cursor: ns-resize;
}

.resizable-direction.east,
.resizable-direction.west {
  width: 5px;
  top: 0;
  bottom: 0;
  cursor: ew-resize;
}

.resizable-direction.north-west,
.resizable-direction.south-east {
  width: 10px;
  height: 10px;
  cursor: nwse-resize;
}

.resizable-direction.north-east,
.resizable-direction.south-west {
  width: 10px;
  height: 10px;
  cursor: nesw-resize;
}

.resizable-direction.north {
  top: -3px;
}

.resizable-direction.south {
  bottom: -3px;
}

.resizable-direction.east {
  right: -3px;
}

.resizable-direction.west {
  left: -3px;
}

.resizable-direction.north-west {
  top: -5px;
  left: -5px;
}

.resizable-direction.north-east {
  top: -5px;
  right: -5px;
}

.resizable-direction.south-west {
  bottom: -5px;
  left: -5px;
}

.resizable-direction.south-east {
  bottom: -5px;
  right: -5px;
}

.q-dialog__inner {
  pointer-events: auto; /* Enable clicks on the dialog itself */
}

.q-dialog .q-card {
  max-height: 90vh; /* Ensures the dialog doesn't exceed 90% of the viewport height */
  max-width: 90vw;  /* Ensures the dialog doesn't exceed 90% of the viewport width */
  overflow: hidden !important;   /* Adds scrolling for overflowing content */
}

.q-card-section {
  overflow: hidden !important; /* Ensure scrolling for long sections */
}
@media (min-width: 600px) {
  .q-dialog__inner--minimized > div {
      max-width: none !important;
      max-height: none !important;
  }
}

.row-equal-width.row > div {
  padding: 10px 15px;
  background: rgba(9, 9, 9, 0.15);
  border: 1px solid rgba(9, 9, 9, 0.2);
}
.row-equal-width.row + .row {
  margin-top: 1rem;
}

#ReferenceList {
  max-height: 60vh; /* Limit the height of the entire modal content */
  overflow-y: auto; /* Enable vertical scrolling if content exceeds */
  overflow-x: hidden; /* Prevent horizontal scrolling */
}