/* 0.18.96.232 — global professional button depth: slightly lighter, still restrained. */
.xyz3d-app button:not(:disabled),
.xyz3d-app input[type="button"]:not(:disabled),
.xyz3d-app input[type="submit"]:not(:disabled),
.xyz3d-app [role="button"]:not([aria-disabled="true"]) {
  background-image: linear-gradient(180deg,
    rgba(125, 228, 255, .17) 0%,
    rgba(57, 151, 194, .075) 48%,
    rgba(2, 12, 22, .075) 100%);
  box-shadow:
    inset 0 1px 0 rgba(231, 250, 255, .25),
    inset 0 -1px 0 rgba(0, 0, 0, .24),
    0 2px 5px rgba(0, 6, 14, .24);
  text-shadow: 0 1px 0 rgba(0, 0, 0, .28);
  transition: transform .11s ease, filter .11s ease, border-color .11s ease, box-shadow .11s ease, background-image .11s ease;
}

.xyz3d-app button:hover:not(:disabled),
.xyz3d-app input[type="button"]:hover:not(:disabled),
.xyz3d-app input[type="submit"]:hover:not(:disabled),
.xyz3d-app [role="button"]:hover:not([aria-disabled="true"]) {
  filter: brightness(1.08) saturate(1.035);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(240, 253, 255, .31),
    inset 0 -1px 0 rgba(0, 0, 0, .22),
    0 4px 9px rgba(0, 8, 18, .28);
}

.xyz3d-app button:active:not(:disabled),
.xyz3d-app input[type="button"]:active:not(:disabled),
.xyz3d-app input[type="submit"]:active:not(:disabled),
.xyz3d-app [role="button"]:active:not([aria-disabled="true"]) {
  transform: translateY(1px);
  filter: brightness(.99);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, .27),
    inset 0 1px 0 rgba(226, 249, 255, .14),
    0 1px 2px rgba(0, 4, 10, .20);
}

.xyz3d-app button.is-active:not(:disabled),
.xyz3d-app button.active:not(:disabled),
.xyz3d-app button[aria-pressed="true"]:not(:disabled),
.xyz3d-app [role="button"][aria-pressed="true"]:not([aria-disabled="true"]) {
  background-image: linear-gradient(180deg,
    rgba(116, 231, 255, .25) 0%,
    rgba(48, 158, 204, .115) 52%,
    rgba(0, 5, 12, .065) 100%);
  box-shadow:
    inset 0 1px 0 rgba(239, 253, 255, .34),
    inset 0 -2px 0 rgba(0, 0, 0, .20),
    0 0 0 1px rgba(90, 219, 255, .14),
    0 3px 8px rgba(0, 9, 20, .27);
}

.xyz3d-app button:disabled,
.xyz3d-app input[type="button"]:disabled,
.xyz3d-app input[type="submit"]:disabled,
.xyz3d-app [role="button"][aria-disabled="true"] {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045);
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .xyz3d-app button,
  .xyz3d-app input[type="button"],
  .xyz3d-app input[type="submit"],
  .xyz3d-app [role="button"] { transition: none !important; }
}
