/* GRZ game-account verification — v2.4.2 "Direction A: store-neutral light".
   Borderless section that blends into any theme; semantic color only for state. */
.grz-caller-box.grz-caller-box {
  --grz-ink: #17171b;
  --grz-ink-2: #6d6d75;
  --grz-line: #e1e1e5;
  --grz-line-strong: #c9c9cf;
  --grz-field-bg: #fff;
  --grz-ok: #18794e;
  --grz-err: #c22f2f;
  --grz-info: #5b6068;
  --grz-radius: 10px;
  width: 100%;
  min-width: 0;
  margin: 16px 0 18px;
  color: var(--grz-ink);
  container: grz-account / inline-size;
}

.grz-caller-box.grz-caller-box,
.grz-caller-box.grz-caller-box * {
  box-sizing: border-box;
}

.grz-caller-box.grz-caller-box .grz-caller-box-inner {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--grz-ink);
}

/* Head/help are visually hidden by markup (grz-caller-sr-only); keep resets. */
.grz-caller-box.grz-caller-box .grz-caller-head,
.grz-caller-box.grz-caller-box .grz-caller-heading,
.grz-caller-box.grz-caller-box .grz-caller-eyebrow,
.grz-caller-box.grz-caller-box .grz-caller-title {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.grz-caller-box.grz-caller-box .grz-caller-product-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
  color: var(--grz-ink-2);
  font-size: 12px;
}

.grz-caller-box.grz-caller-box .grz-caller-product-name,
.grz-caller-box.grz-caller-box .grz-caller-sku-name {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border: 1px solid var(--grz-line);
  border-radius: 6px;
  background: transparent;
}

.grz-caller-box.grz-caller-box .grz-caller-label {
  display: flex;
  gap: 4px;
  margin: 0 0 7px;
  padding: 0;
  color: var(--grz-ink);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .015em;
}

.grz-caller-box.grz-caller-box .grz-caller-required {
  color: var(--grz-err);
}

.grz-caller-box.grz-caller-box .grz-caller-row {
  position: relative;
  display: block;
  width: 100%;
}

/* ---- control row: input + Confirm + saved-IDs ghost ---- */

.grz-caller-box.grz-caller-box .grz-caller-account-control {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.grz-caller-box.grz-caller-box .grz-caller-account-control[hidden] {
  display: none !important;
}

.grz-caller-box.grz-caller-box .grz-caller-user-id,
.grz-caller-box.grz-caller-box .grz-caller-zone-id,
.grz-caller-box.grz-caller-box .grz-caller-player-name-display {
  display: block;
  width: 100%;
  min-width: 0;
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid var(--grz-line-strong);
  border-radius: var(--grz-radius);
  outline: 0;
  background: var(--grz-field-bg);
  box-shadow: none;
  color: var(--grz-ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 42px;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.grz-caller-box.grz-caller-box .grz-caller-account-control .grz-caller-user-id {
  flex: 1 1 auto;
  width: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .02em;
}

.grz-caller-box.grz-caller-box .grz-caller-user-id::placeholder,
.grz-caller-box.grz-caller-box .grz-caller-zone-id::placeholder,
.grz-caller-box.grz-caller-box .grz-caller-player-name-display::placeholder {
  font-family: inherit;
  color: #9a9aa2;
  opacity: 1;
}

.grz-caller-box.grz-caller-box .grz-caller-user-id:focus,
.grz-caller-box.grz-caller-box .grz-caller-zone-id:focus,
.grz-caller-box.grz-caller-box .grz-caller-player-name-display:focus,
.grz-caller-box.grz-caller-box .grz-caller-server-id:focus,
.grz-caller-box.grz-caller-box .grz-caller-profile-id:focus {
  border-color: var(--grz-ink);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(23, 23, 27, .08);
}

.grz-caller-box.grz-caller-box .grz-caller-user-id[aria-invalid="true"],
.grz-caller-box.grz-caller-box .grz-caller-zone-id[aria-invalid="true"],
.grz-caller-box.grz-caller-box .grz-caller-player-name-display[aria-invalid="true"],
.grz-caller-box.grz-caller-box .grz-caller-server-id[aria-invalid="true"],
.grz-caller-box.grz-caller-box .grz-caller-profile-id[aria-invalid="true"] {
  border-color: var(--grz-err);
  box-shadow: 0 0 0 3px rgba(194, 47, 47, .10);
}

.grz-caller-box.grz-caller-box .grz-caller-player-name-display[readonly] {
  border-color: var(--grz-line);
  background: transparent;
  color: var(--grz-ink-2);
  cursor: default;
  opacity: 1;
}

.grz-caller-box.grz-caller-box .grz-caller-player-name-display.is-manual {
  border-color: #d6b66b;
  background: #fffcf3;
  color: var(--grz-ink);
}

.grz-caller-box.grz-caller-box .grz-caller-server-id,
.grz-caller-box.grz-caller-box .grz-caller-profile-id {
  display: block;
  width: 100%;
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0 34px 0 12px;
  border: 1px solid var(--grz-line-strong);
  border-radius: var(--grz-radius);
  outline: 0;
  background: var(--grz-field-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236d6d75' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  box-shadow: none;
  color: var(--grz-ink);
  font-family: inherit;
  font-size: 13.5px;
  line-height: normal;
  appearance: none;
  transition: border-color .3s ease, box-shadow .3s ease;
}

/* ---- inline name (aria mirror inside the control row) ---- */

.grz-caller-box.grz-caller-box .grz-caller-inline-name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.grz-caller-box.grz-caller-box .grz-caller-inline-name[hidden] {
  display: none !important;
}

/* ---- Confirm button ---- */

.grz-caller-box.grz-caller-box .grz-caller-validate-btn {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  max-width: 45%;
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0 18px;
  border: 0;
  border-radius: var(--grz-radius);
  outline: 0;
  background: var(--grz-ink);
  box-shadow: none;
  color: #fafbfb;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  appearance: none;
  transition: opacity .3s ease;
}

.grz-caller-box.grz-caller-box .grz-caller-validate-btn[hidden],
.grz-caller-box.grz-caller-box .grz-caller-switch-btn[hidden],
.grz-caller-box.grz-caller-box .grz-caller-change-btn[hidden],
.grz-caller-box.grz-caller-box .grz-caller-identity[hidden] {
  display: none !important;
}

.grz-caller-box.grz-caller-box .grz-caller-validate-btn:hover {
  opacity: .86;
}

.grz-caller-box.grz-caller-box .grz-caller-validate-btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(23, 23, 27, .18);
}

.grz-caller-box.grz-caller-box .grz-caller-validate-btn[disabled] {
  opacity: .75;
  cursor: wait;
}

/* checking dots */
.grz-caller-box.grz-caller-box .grz-caller-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.grz-caller-box.grz-caller-box .grz-caller-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  animation: grz-caller-bounce .8s infinite;
}

.grz-caller-box.grz-caller-box .grz-caller-dots i:nth-child(2) { animation-delay: .12s; }
.grz-caller-box.grz-caller-box .grz-caller-dots i:nth-child(3) { animation-delay: .24s; }

@keyframes grz-caller-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ---- ghost saved-IDs switch ---- */

.grz-caller-box.grz-caller-box .grz-caller-switch-btn {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 40px;
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--grz-line-strong);
  border-radius: var(--grz-radius);
  outline: 0;
  background: var(--grz-field-bg);
  box-shadow: none;
  color: var(--grz-ink-2);
  cursor: pointer;
  appearance: none;
  transition: border-color .3s ease, color .3s ease;
}

.grz-caller-box.grz-caller-box .grz-caller-switch-btn:hover {
  border-color: var(--grz-ink);
  color: var(--grz-ink);
}

.grz-caller-box.grz-caller-box .grz-caller-switch-btn:focus-visible {
  outline: 0;
  border-color: var(--grz-ink);
  box-shadow: 0 0 0 3px rgba(23, 23, 27, .10);
}

.grz-caller-box.grz-caller-box .grz-caller-switch-icon {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.grz-caller-box.grz-caller-box .grz-caller-switch-chevron {
  width: 12px;
  height: 12px;
  color: inherit;
  font-size: 12px;
  line-height: 12px;
  transition: transform .3s ease;
}

.grz-caller-box.grz-caller-box .grz-caller-switch-btn[aria-expanded="true"] .grz-caller-switch-chevron {
  transform: rotate(180deg);
}

/* ---- verified identity strip ---- */

.grz-caller-box.grz-caller-box .grz-caller-identity {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  height: 44px;
  min-height: 44px;
  padding: 0 8px 0 12px;
  border: 1px solid var(--grz-line);
  border-radius: var(--grz-radius);
  background: var(--grz-field-bg);
}

.grz-caller-box.grz-caller-box .grz-caller-identity-badge {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grz-ok);
  color: #fff;
}

.grz-caller-box.grz-caller-box .grz-caller-identity-badge svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.grz-caller-box.grz-caller-box .grz-caller-identity-meta {
  display: flex;
  flex: 1 1 auto;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
}

.grz-caller-box.grz-caller-box .grz-caller-identity-name {
  min-width: 0;
  overflow: hidden;
  color: var(--grz-ink);
  font-size: 14px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.grz-caller-box.grz-caller-box .grz-caller-identity-id {
  flex: 0 0 auto;
  color: var(--grz-ink-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12.5px;
  letter-spacing: .02em;
}

.grz-caller-box.grz-caller-box .grz-caller-change-btn {
  flex: 0 0 auto;
  margin: 0;
  padding: 6px 8px;
  border: 0;
  border-radius: 6px;
  background: none;
  color: var(--grz-ink-2);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  appearance: none;
  transition: color .3s ease, background-color .3s ease;
}

.grz-caller-box.grz-caller-box .grz-caller-change-btn:hover {
  background: #f0f0f3;
  color: var(--grz-ink);
}

.grz-caller-box.grz-caller-box .grz-caller-change-btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(23, 23, 27, .12);
  color: var(--grz-ink);
}

.grz-caller-box.grz-caller-box .grz-caller-identity .grz-caller-switch-btn {
  width: 36px;
  height: 32px;
  min-height: 32px;
  border-color: var(--grz-line);
}

/* ---- status line ---- */

.grz-caller-box.grz-caller-box .grz-caller-status {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 0;
  margin: 9px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--grz-info);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.45;
}

.grz-caller-box.grz-caller-box .grz-caller-status[hidden] {
  display: none !important;
}

.grz-caller-box.grz-caller-box .grz-caller-status.is-success {
  color: var(--grz-ok);
}

.grz-caller-box.grz-caller-box .grz-caller-status.is-success::before {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.grz-caller-box.grz-caller-box .grz-caller-status.is-error {
  color: var(--grz-err);
}

.grz-caller-box.grz-caller-box .grz-caller-status.is-manual {
  color: #8a6116;
}

/* ---- secondary field rows ---- */

.grz-caller-box.grz-caller-box .grz-caller-server-wrap,
.grz-caller-box.grz-caller-box .grz-caller-zone-wrap,
.grz-caller-box.grz-caller-box .grz-caller-name-wrap,
.grz-caller-box.grz-caller-box .grz-caller-profile-wrap {
  position: relative;
  margin-top: 10px;
}

.grz-caller-box.grz-caller-box .grz-caller-name-label {
  margin-top: 0;
}

/* ---- saved-IDs popover ---- */

.grz-caller-box.grz-caller-box .grz-caller-switch-wrap {
  position: relative;
  width: 100%;
  height: 0;
  margin: 0;
  text-align: start;
}

.grz-caller-box.grz-caller-box .grz-caller-switch-wrap.is-open {
  z-index: 30;
  height: auto;
  margin-top: 8px;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-popover {
  position: relative;
  z-index: 31;
  width: 100%;
  max-height: 320px;
  padding: 0 0 4px;
  overflow: hidden auto;
  border: 1px solid var(--grz-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(23, 23, 27, .12);
  text-align: start;
  animation: grz-caller-pop .3s cubic-bezier(.65, 0, .35, 1);
}

@keyframes grz-caller-pop {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

.grz-caller-box.grz-caller-box .grz-caller-saved-popover[hidden] {
  display: none !important;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-list {
  display: grid;
  gap: 0;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-title {
  padding: 10px 12px 6px;
  color: var(--grz-ink-2);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0;
  width: 100%;
  min-width: 0;
  min-height: 50px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--grz-line);
  background: #fff;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-row.is-current {
  background: #f7f9f7;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-account {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2px 10px;
  width: 100%;
  min-width: 0;
  min-height: 50px;
  margin: 0;
  padding: 9px 12px;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  color: var(--grz-ink);
  font-family: inherit;
  font-size: 12px;
  line-height: 1.25;
  text-align: start;
  text-transform: none;
  cursor: pointer;
  appearance: none;
  transition: background-color .3s ease;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-account:hover,
.grz-caller-box.grz-caller-box .grz-caller-saved-account:focus-visible {
  background: #f4f4f6;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-account:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(23, 23, 27, .18);
}

.grz-caller-box.grz-caller-box .grz-caller-saved-main {
  display: flex;
  grid-column: 1;
  grid-row: 1;
  align-items: baseline;
  min-width: 0;
  gap: 7px;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-name {
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  color: var(--grz-ink);
  font-size: 13px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-id {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  color: var(--grz-ink-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-sub {
  grid-column: 1;
  grid-row: 2;
  max-width: 100%;
  overflow: hidden;
  color: var(--grz-ink-2);
  font-size: 11.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-check {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--grz-ok);
}

.grz-caller-box.grz-caller-box .grz-caller-saved-check svg {
  width: 18px;
  height: 18px;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  margin: 4px 6px 4px 0;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--grz-ink-2);
  cursor: pointer;
  transition: background-color .3s ease, color .3s ease;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-delete svg {
  width: 15px;
  height: 15px;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-delete:hover,
.grz-caller-box.grz-caller-box .grz-caller-saved-delete:focus-visible {
  outline: 0;
  background: #fbeceb;
  color: var(--grz-err);
}

.grz-caller-box.grz-caller-box .grz-caller-saved-confirm {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-top: 1px solid var(--grz-line);
  background: #fdf6f5;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-confirm[hidden] {
  display: none !important;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-confirm-text {
  min-width: 0;
  color: var(--grz-err);
  font-size: 11.5px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-delete-confirm,
.grz-caller-box.grz-caller-box .grz-caller-saved-delete-cancel {
  min-height: 34px;
  margin: 0;
  padding: 0 10px;
  border: 1px solid var(--grz-line-strong);
  border-radius: 6px;
  background: #fff;
  color: var(--grz-ink);
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-delete-confirm {
  border-color: var(--grz-err);
  background: var(--grz-err);
  color: #fff;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-feedback {
  margin: 0;
  padding: 8px 12px;
  border-top: 1px solid var(--grz-line);
  color: var(--grz-ok);
  font-size: 11.5px;
  line-height: 1.35;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-feedback.is-error {
  color: var(--grz-err);
}

.grz-caller-box.grz-caller-box .grz-caller-saved-new {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: #fff;
  box-shadow: none;
  color: var(--grz-ink);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  text-align: start;
  cursor: pointer;
  appearance: none;
  transition: background-color .3s ease;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-new:hover,
.grz-caller-box.grz-caller-box .grz-caller-saved-new:focus-visible {
  background: #f4f4f6;
}

.grz-caller-box.grz-caller-box .grz-caller-saved-new .dashicons {
  width: 15px;
  height: 15px;
  color: var(--grz-ink-2);
  font-size: 15px;
  line-height: 15px;
}

/* ---- utilities ---- */

.grz-caller-box.grz-caller-box .grz-caller-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.grz-tp-cart-actions > .grz-caller-box.grz-caller-box {
  margin: 0 0 7px;
}

@container grz-account (max-width: 330px) {
  .grz-caller-box.grz-caller-box .grz-caller-validate-btn {
    min-width: 72px;
    padding-inline: 12px;
  }

  .grz-caller-box.grz-caller-box .grz-caller-identity-name {
    font-size: 13px;
  }

  .grz-caller-box.grz-caller-box .grz-caller-identity-id {
    display: none;
  }
}

@media (max-width: 520px) {
  .grz-caller-box.grz-caller-box .grz-caller-saved-popover {
    width: 100%;
    max-height: 280px;
  }

  .grz-caller-box.grz-caller-box .grz-caller-saved-confirm {
    grid-template-columns: 1fr 1fr;
  }

  .grz-caller-box.grz-caller-box .grz-caller-saved-confirm-text {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .grz-caller-box.grz-caller-box *,
  .grz-caller-box.grz-caller-box *::before,
  .grz-caller-box.grz-caller-box *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (forced-colors: active) {
  .grz-caller-box.grz-caller-box .grz-caller-user-id,
  .grz-caller-box.grz-caller-box .grz-caller-zone-id,
  .grz-caller-box.grz-caller-box .grz-caller-player-name-display,
  .grz-caller-box.grz-caller-box .grz-caller-server-id,
  .grz-caller-box.grz-caller-box .grz-caller-profile-id,
  .grz-caller-box.grz-caller-box .grz-caller-identity,
  .grz-caller-box.grz-caller-box .grz-caller-switch-btn {
    border-color: CanvasText;
  }

  .grz-caller-box.grz-caller-box .grz-caller-validate-btn {
    forced-color-adjust: auto;
  }
}
