._dash-loading { display: none; }

/* Prevent mobile zoom on input/select focus */
input, select, textarea, .mantine-Input-input, .mantine-MultiSelect-input {
  font-size: 16px !important;
}

/* Force pointer cursor for the upload dropzone and prevent text selection */
#upload-file,
#upload-file * {
  cursor: pointer !important;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

/* PDF2Excel matrix-style input prompt - matches schildi_embed.css styling */
.pdf2excel-matrix-composer {
  padding: 0;
  margin-top: 0 !important;
}

.pdf2excel-matrix-input .mantine-Input-input {
  min-height: 40px;
  padding: 14px 18px !important;
  border-radius: var(--mantine-radius-xl, 20px);
  line-height: 1.35;
  font-size: max(16px, 1em); /* prevent mobile auto-zoom */
  background: transparent;
  color: inherit;
  /* Always show focus style - doesn't change on blur */
  border: 1px solid var(--mantine-color-green-6, #37b24d);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--mantine-color-green-6, #37b24d) 20%, transparent);
  box-sizing: border-box;
  transition: border-color .12s ease, box-shadow .12s ease;
  caret-color: var(--mantine-color-green-6, #37b24d);
  outline: none;
}

/* send button - matches .mx_MessageComposer_sendMessage */
.pdf2excel-matrix-send {
  background-color: var(--mantine-color-green-7) !important;
  border-radius: 9999px !important;
  width: 40px !important;
  height: 40px !important;
  flex-shrink: 0;
}

.pdf2excel-matrix-send:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--mantine-color-green-6, #37b24d) 28%, transparent);
  border-radius: 9999px; /* circular buttons */
  outline: none !important;
}