[data-bs-theme='light'] .readonly {
  pointer-events: none;
  background-color: var(--bs-gray-200);
  color: var(--bs-gray-800);
}

[data-bs-theme='dark'] .readonly {
  pointer-events: none;
  background-color: var(--bs-dark);
  color: var(--bs-gray-700);
}

.page-loader {
  position: fixed !important;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: auto;
  cursor: not-allowed;
}