:root {
 
  --rr-surface: #ffffff;
  --rr-border: #b6c8db;
  --rr-border-strong: #7897b7;
  --rr-filter-panel: #f8fbff;
  --rr-filter-panel-edge: rgba(59, 91, 126, 0.28);
  --rr-filter-field-border: #7f9fbd;
  --rr-filter-field-border-strong: #416d98;
  --rr-surface-alt: #eff5fb;
  --rr-surface-strong: #dce8f4;
  --rr-header: #a9c3dd;
  --rr-header-strong: #97b4d1;
  --rr-header-text: #103f69;
  --rr-text: #112b45;
  --rr-muted: #4e6278;
  --rr-accent: #115fa8;
  --rr-accent-soft: #dbeafa;
  --rr-special: #115fa8;
  --rr-junior: #c66b16;
  --rr-prefix: #117463;
  --rr-group: #3f8f55;
  --rr-breed: #b84d59;
  --rr-class: #6a2f7b;
  --rr-hairline-border: rgba(68, 78, 90, 0.72);
  --rr-hairline-border-soft: rgba(68, 78, 90, 0.54);
  --rr-tone-undertone: rgba(17, 95, 168, 0.14);
  --rr-tone-silver: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(241, 245, 249, 0.95) 52%,
    rgba(225, 232, 239, 0.94) 100%
  );
  --rr-navy-1: #0b2b4a;
  --rr-navy-2: #124066;
  --rr-navy-3: #1a5b90;
  --rr-navy-text: #e8f1f8;
  --rr-report-width: 960px;
  --rr-detail-width: 700px;
  --rr-shadow-soft: 0 12px 26px rgba(12, 33, 53, 0.13);
  --rr-shadow-subtle: 0 5px 12px rgba(12, 33, 53, 0.08);
  --rr-shadow-card: 0 10px 20px rgba(15, 45, 72, 0.16);
  --rr-shadow-lifted: 0 18px 32px rgba(12, 33, 53, 0.16);
}

/* Shared loading overlay reused by the Entries dashboard and Results reports. */
#wa-loading {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: start center;
  padding-top: 1rem;
  background: transparent;
  backdrop-filter: none;
}

#wa-loading > div {
  display: grid;
  gap: 0.7rem;
  justify-items: center;
  min-width: 140px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--rr-border);
  border-radius: 7px;
  background: #ffffff;
  box-shadow: var(--rr-shadow-subtle);
}

.wa-loading-icon {
  width: 28px;
  height: 28px;
  border: 3px solid #c7d5e4;
  border-top-color: var(--rr-accent);
  border-radius: 50%;
  animation: wa-spin 0.8s linear infinite;
}

.wa-loading-text {
  color: var(--rr-muted);
  font-weight: 700;
}

.wa-hidden {
  display: none !important;
}

@keyframes wa-spin {
  to {
    transform: rotate(360deg);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.rr-page,
body.ps-page,
body.rr-page-results,
body.pr-body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.58), transparent 34%),
    linear-gradient(180deg, #e4ecf4 0%, var(--rr-bg) 28%, #becbd9 100%);
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
  background-size:
    100% 24rem,
    100% 100%;
  color: var(--rr-text);
  font-family: Arial, sans-serif;
  line-height: 1.45;
  white-space: normal;
}

html {
  
}

.rr-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.05rem 1rem 0.82rem;
  background: linear-gradient(160deg, var(--rr-navy-2) 0%, var(--rr-navy-1) 100%);
  border-bottom: 3px solid var(--rr-navy-3);
  gap: 0.45rem;
  box-shadow: 0 14px 24px rgba(10, 28, 46, 0.18);
}

.rr-title {
  margin: 0;
  color: var(--rr-navy-text);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.15;
}

.rr-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  justify-content: center;
}

.rr-nav a {
  color: rgba(232, 241, 248, 0.88);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.3rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    color 140ms ease,
    background-color 140ms ease,
    border-color 140ms ease,
    transform 140ms ease;
}

.rr-nav a:hover,
.rr-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transform: translateY(-1px);
}

.rr-nav a[aria-current="page"] {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.rr-main,
.pr-shell {
  width: min(var(--rr-report-width), 100% - 1.6rem);
  margin: 1rem auto 1.35rem;
}

.pr-shell__head {
  margin-bottom: 0.55rem;
}

.rr-page-title,
.pr-shell__title {
  margin: 0 0 0.55rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(24, 73, 116, 0.34);
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    var(--rr-header) 0%,
    var(--rr-header-strong) 100%
  );
  color: var(--rr-header-text);
  font-size: 1.28rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-align: center;
}

.pr-shell__intro {
  margin: 0;
  font-size: 0.95rem;
  color: var(--rr-text);
  text-align: center;
}

.rr-search-card,
.rr-results-card,
.pr-card {

}

.rr-search-card {
  padding: 0.6rem 0.65rem;
  text-align: left;
}

.rr-search-panel {
  width: min(var(--rr-report-width), 100% - 1.6rem);
  max-width: var(--rr-report-width);
  margin: 0.85rem auto 0;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(82, 113, 145, 0.76);
  border-radius: 6px;
  background: linear-gradient(180deg, #f9fcff 0%, #e8f1fa 100%);
  box-shadow: var(--rr-shadow-lifted);
  position: relative;
  overflow: hidden;
}

.rr-search-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4.25rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.52), transparent 34%),
    linear-gradient(180deg, rgba(15, 93, 168, 0.14) 0%, rgba(15, 93, 168, 0) 100%);
  pointer-events: none;
}

.rr-search-form,
.rr-search-panel {
  display: grid;
  gap: 0.45rem;
}

.rr-search-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.85rem 0.9rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.rr-filter {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  gap: 0.28rem;
  min-width: 0;
  color: #32516d;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.rr-filter > span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #476686;
}

.rr-filter-break {
  display: none;
}

.rr-filter--year {
  grid-column: span 2;
}

.rr-filter--show {
  grid-column: span 5;
}

.rr-filter--breed {
  grid-column: span 3;
}

.rr-filter--award {
  grid-column: span 2;
}

.rr-filter--challenge {
  grid-column: span 2;
}

.rr-filter--cat,
.rr-filter--owner {
  grid-column: span 5;
}

.rr-filter select,
.rr-filter input {
  width: 100%;
  min-height: 2.35rem;
  border: 1px solid #9bb2c8;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  padding: 0.4rem 0.58rem;
  color: var(--rr-text);
  font: inherit;
  font-weight: 500;
  appearance: auto;
  -webkit-appearance: auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.rr-filter select:focus,
.rr-filter input:focus {
  outline: none;
  border-color: var(--rr-accent);
  box-shadow: 0 0 0 2px var(--rr-accent-soft);
}

body.rr-page .rr-search-panel.rr-search-card {
  display: block !important;
  width: min(var(--rr-report-width), 100% - 1.6rem) !important;
  max-width: var(--rr-report-width) !important;
  margin: 0.85rem auto 0 !important;
  padding: 0 !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.98) 56%, rgba(236, 244, 251, 0.98) 100%) !important;
  border: 1px solid var(--rr-filter-panel-edge) !important;
  border-radius: 6px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 8px 18px rgba(12, 33, 53, 0.08) !important;
  color: var(--rr-text) !important;
  overflow: visible !important;
}

body.ps-page .rr-search-panel.rr-search-card {
  display: block !important;
  width: min(var(--rr-report-width), 100% - 1.6rem) !important;
  max-width: var(--rr-report-width) !important;
  margin: 0.85rem auto 0 !important;
  padding: 0 !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.98) 56%, rgba(236, 244, 251, 0.98) 100%) !important;
  border: 1px solid var(--rr-filter-panel-edge) !important;
  border-radius: 6px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 8px 18px rgba(12, 33, 53, 0.08) !important;
  color: var(--rr-text) !important;
  overflow: visible !important;
}

.rr-filter-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.52rem 0.82rem;
  border-bottom: 1px solid rgba(48, 75, 103, 0.22);
  border-radius: 5px 5px 0 0;
  background:
    linear-gradient(90deg, rgba(17, 95, 168, 0.18) 0 0.34rem, transparent 0.34rem),
    linear-gradient(180deg, rgba(241, 247, 252, 0.98) 0%, rgba(224, 236, 247, 0.94) 100%);
  color: #153f68;
}

.rr-filter-panel-head h2 {
  margin: 0;
  color: #103f69;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.rr-filter-panel-head span {
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  padding: 0.16rem 0.5rem;
  border: 1px solid rgba(65, 109, 152, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #415c76;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

body.rr-page #rrSearchForm.rr-search-form {
  display: block !important;
  margin: 0 !important;
  padding: 0.78rem 0.82rem 0.82rem !important;
}

body.ps-page #psSearchForm.rr-search-form {
  display: block !important;
  margin: 0 !important;
  padding: 0.78rem 0.82rem 0.82rem !important;
}

body.rr-page #rrSearchForm > .rr-search-grid {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  gap: 0.68rem 0.76rem !important;
  align-items: start !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

body.ps-page #psSearchForm > .rr-search-grid {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  gap: 0.68rem 0.76rem !important;
  align-items: start !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

body.rr-page #rrSearchForm .rr-filter {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-auto-flow: row !important;
  gap: 0.24rem !important;
  min-width: 0 !important;
  color: #183d62 !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  position: relative !important;
}

body.ps-page #psSearchForm .rr-filter {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-auto-flow: row !important;
  gap: 0.24rem !important;
  min-width: 0 !important;
  color: #183d62 !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  position: relative !important;
}

.rr-filter::after {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.42rem);
  z-index: 20;
  width: max-content;
  max-width: min(18rem, 80vw);
  padding: 0.34rem 0.5rem;
  border: 1px solid rgba(20, 58, 94, 0.32);
  border-radius: 4px;
  background: rgba(14, 43, 70, 0.95);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translate(-50%, 0.18rem);
  transition:
    opacity 120ms ease,
    transform 120ms ease;
}

.rr-filter:hover::after,
.rr-filter:focus-within::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.rr-page #rrSearchForm .rr-filter > span {
  display: block !important;
  text-transform: uppercase !important;
  letter-spacing: 0.065em !important;
  text-align: center !important;
  color: #2b567d !important;
  font-size: 0.72rem !important;
}

.rr-show-filter-group {
  display: grid;
  gap: 0.7rem;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: none;
  border-color: transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.rr-show-filter-group .rr-show-context {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.rr-show-filter-group .rr-show-context .pr-card__body {
  padding: 0;
}

.rr-show-filter-group .rr-search-panel {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: none;
  border-color: transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.rr-show-filter-group .rr-search-panel::before {
  display: none;
}

.rr-all-show-break {
  margin: 1.15rem 0 0.7rem;
}

.rr-all-show-break .rr-show-title {
  margin-bottom: 0;
}

body.rr-page .rr-results-shell {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-color: transparent !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.rr-results-shell .pr-card__body {
  padding: 0;
}

body.rr-page .rr-show-filter-group .rr-search-panel.rr-search-card {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid var(--rr-filter-panel-edge) !important;
  border-radius: 6px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.98) 56%, rgba(236, 244, 251, 0.98) 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 8px 18px rgba(12, 33, 53, 0.08) !important;
  overflow: visible !important;
}

body.ps-page #psSearchForm .rr-filter > span {
  display: block !important;
  text-transform: uppercase !important;
  letter-spacing: 0.065em !important;
  text-align: center !important;
  color: #2b567d !important;
  font-size: 0.72rem !important;
}

body.rr-page #rrSearchForm .rr-filter-break {
  display: none !important;
}

body.rr-page #rrSearchForm .rr-filter--year {
  grid-column: span 2 !important;
}

body.rr-page #rrSearchForm .rr-filter--show {
  grid-column: span 5 !important;
}

body.rr-page #rrSearchForm .rr-filter--breed {
  grid-column: span 3 !important;
}

body.rr-page #rrSearchForm .rr-filter--award {
  grid-column: span 2 !important;
}

body.rr-page #rrSearchForm .rr-filter--challenge {
  grid-column: span 3 !important;
}

body.rr-page #rrSearchForm .rr-filter--cat,
body.rr-page #rrSearchForm .rr-filter--owner,
body.rr-page #rrSearchForm .rr-filter-action-row {
  grid-column: span 3 !important;
}

body.ps-page #psSearchForm .rr-filter--year,
body.ps-page #psSearchForm .rr-filter--award,
body.ps-page #psSearchForm .ps-filter--award {
  grid-column: span 2 !important;
}

body.ps-page #psSearchForm .rr-filter--cat,
body.ps-page #psSearchForm .rr-filter--owner,
body.ps-page #psSearchForm .ps-filter--exhibitor {
  grid-column: span 3 !important;
}


body.rr-page #rrSearchForm .rr-filter select,
body.rr-page #rrSearchForm .rr-filter input {
  width: 100% !important;
  min-height: 2.28rem !important;
  border: 1px solid var(--rr-filter-field-border) !important;
  border-radius: 6px !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  padding: 0.38rem 0.58rem !important;
  color: var(--rr-text) !important;
  font: inherit !important;
  font-weight: 500 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 1px 3px rgba(17, 43, 69, 0.05) !important;
}

body.ps-page #psSearchForm .rr-filter select,
body.ps-page #psSearchForm .rr-filter input {
  width: 100% !important;
  min-height: 2.28rem !important;
  border: 1px solid var(--rr-filter-field-border) !important;
  border-radius: 6px !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  padding: 0.38rem 0.58rem !important;
  color: var(--rr-text) !important;
  font: inherit !important;
  font-weight: 500 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 1px 3px rgba(17, 43, 69, 0.05) !important;
}

body.rr-page #rrSearchForm .rr-filter select:focus,
body.rr-page #rrSearchForm .rr-filter input:focus,
body.ps-page #psSearchForm .rr-filter select:focus,
body.ps-page #psSearchForm .rr-filter input:focus {
  outline: none !important;
  border-color: var(--rr-accent) !important;
  box-shadow:
    0 0 0 2px rgba(17, 95, 168, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
}

.rr-field,
.rr-search-field {
  display: grid;
  grid-template-columns: 6.2rem minmax(0, 1fr);
  gap: 0.25rem 0.4rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--rr-muted);
}

.rr-field--wide {
  grid-column: 1 / -1;
}

.rr-field span,
.rr-search-field label {
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.rr-field input,
.rr-field select,
.rr-search-field input,
.rr-search-field select {
  width: 100%;
  min-height: 2.1rem;
  border: 1.5px solid var(--rr-border-strong);
  border-radius: 5px;
  background: #fff;
  padding: 0.3rem 0.5rem;
  color: var(--rr-text);
  font-size: 0.93rem;
  appearance: auto;
  -webkit-appearance: auto;
}

.rr-field input:focus,
.rr-field select:focus,
.rr-search-field input:focus,
.rr-search-field select:focus {
  outline: none;
  border-color: var(--rr-accent);
  box-shadow: 0 0 0 2px var(--rr-accent-soft);
}

.rr-page .hwrap {
  margin: 0;
  padding: 0;
  border: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.rr-page .vwrap {
  min-width: 0;
}

.rr-filter-action-row {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 0.45rem;
  width: 100%;
}

.rr-filter-action-row:has(.rr-load-message:not([hidden])) {
  grid-column: 1 / -1 !important;
  align-items: center;
  justify-content: space-between;
}

.rr-search-actions {
  display: flex;
  gap: 0.4rem;
  justify-content: flex-end;
  align-items: center;
  align-self: end;
  margin-left: auto;
  flex: 0 0 auto;
  padding-top: 0.1rem;
}

.rr-page .rr-search-actions.hwrap {
  margin-left: auto;
}

.rr-search-actions button {
  min-height: 2.28rem;
  width: auto;
  min-width: 5.65rem;
  padding: 0.34rem 0.78rem;
  border-radius: 6px;
  border: 1px solid rgba(70, 100, 130, 0.7);
  background: linear-gradient(180deg, #ffffff 0%, #edf5fd 100%);
  color: var(--rr-text);
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(15, 45, 72, 0.09);
  transition:
    background-color 140ms ease,
    border-color 140ms ease,
    transform 140ms ease,
    box-shadow 140ms ease;
}

.rr-search-actions button:hover {
  background: #eef4ff;
  border-color: var(--rr-filter-field-border-strong);
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(15, 45, 72, 0.12);
}

.rr-search-actions button[type="submit"] {
  border-color: #0c579b;
  background: linear-gradient(180deg, #1b75c3 0%, #0e5fa9 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 8px 16px rgba(15, 95, 168, 0.2);
}

.rr-search-actions button[type="submit"]:hover {
  background: #0a4d90;
  border-color: #0a4d90;
}

.rr-search-actions__reset {
  border-color: #9aafc3 !important;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%) !important;
  color: var(--rr-text) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88) !important;
}

.rr-search-actions__reset:hover {
  background: #eef4ff !important;
  border-color: var(--rr-accent) !important;
}

body.ps-page .rr-search-panel.rr-search-card {
  margin-top: 0.32rem !important;
}

body.ps-page .rr-filter-panel-head {
  padding: 0.36rem 0.62rem;
}

body.ps-page .rr-filter-panel-head h2 {
  font-size: 0.78rem;
}

body.ps-page .rr-filter-panel-head span {
  min-height: 1.2rem;
  padding: 0.1rem 0.4rem;
  font-size: 0.68rem;
}

.ps-last-updated {
  margin: 0;
  padding: 0.3rem 0.6rem 0;
  color: var(--rr-muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
}


body.ps-page #psSearchForm .rr-filter {
  gap: 0.16rem !important;
}


body.ps-page #psSearchForm .rr-filter select,
body.ps-page #psSearchForm .rr-filter input {
  min-height: 1.95rem !important;
  padding: 0.25rem 0.45rem !important;
  border-radius: 4px !important;
  font-size: 0.84rem !important;
}

body.ps-page #psSearchForm .rr-search-actions {
  align-self: end;
  gap: 0.32rem;
  justify-content: flex-end;
  padding-top: 0;
}

body.ps-page #psSearchForm .rr-search-actions button {
  min-width: 4.25rem;
  width: auto;
  min-height: 1.95rem;
  padding: 0.22rem 0.55rem;
  border-radius: 4px;
  font-size: 0.82rem;
  box-shadow: none;
  transform: none;
}

body.ps-page #psSearchForm .rr-search-actions button:hover,
body.ps-page #psSearchForm .rr-search-actions button:focus-visible {
  transform: none;
}

body.ps-page #psSearchForm.rr-search-form--auto-submit .rr-search-actions__apply {
  display: none;
}

.rr-load-message {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  flex: 1 1 auto;
  min-width: 0;
  color: var(--rr-text);
}

.rr-load-message[hidden] {
  display: none;
}

.rr-load-message__text {
  margin: 0;
  font-weight: 700;
}

.rr-load-message__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.45rem;
}

.rr-load-message__button {
  min-width: 4rem;
  min-height: 2rem;
  padding: 0.28rem 0.7rem;
  border: 1px solid rgba(88, 117, 147, 0.58);
  border-radius: 999px;
  background: #fff;
  color: #174d80;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.rr-load-message__button--yes {
  border-color: #0f5da8;
  background: linear-gradient(180deg, #2f7ec6 0%, #0f5da8 100%);
  color: #fff;
}

.rr-results-card {
  margin-top: 0.55rem;
  padding: 0.82rem 0.9rem 0.95rem;
  box-shadow: 0 18px 32px rgba(12, 33, 53, 0.15);
}

.rr-results-card::before,
.pr-card-points::before {
  content: "";
  display: block;
  height: 0.16rem;
  margin: -0.15rem -0.15rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 93, 168, 0.9), rgba(47, 126, 198, 0.3));
}

.rr-show-title-row {
  display: grid;
  grid-template-columns: minmax(2.5rem, auto) 1fr minmax(2.5rem, auto);
  gap: 0.65rem;
  align-items: center;
  padding: 0.28rem 0.46rem;
  border: 1px solid rgba(24, 73, 116, 0.34);
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    #d4e3f1 0%,
    #b2c9df 48%,
    #9eb8d2 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 8px 18px rgba(17, 41, 64, 0.08);
}

.rr-show-nav-controls {
  display: contents;
}

.rr-show-nav-controls .rr-show-pager__link:first-child {
  grid-column: 1;
  grid-row: 1;
}

.rr-show-nav-controls .rr-show-pager__link:last-child {
  grid-column: 3;
  grid-row: 1;
}

.rr-show-pager__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
  color: #174d80;
  font-family: Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 2px 2px rgba(17, 41, 64, 0.16);
}

.rr-show-pager__link:hover,
.rr-show-pager__link:focus-visible {
  border-color: var(--rr-accent);
  color: #0d3f72;
  text-decoration: none;
  transform: scale(1.12);
}

.rr-results-title {
  margin: 0 0 0.55rem;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(24, 73, 116, 0.3);
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    var(--rr-header) 0%,
    var(--rr-header-strong) 100%
  );
  color: var(--rr-header-text);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.rr-results .pr-card {
  margin-top: 0.55rem;
}
.pr-card__body {
  display: grid;
  gap: 0.85rem;
  padding: 0.9rem 0.95rem 1rem;
}

.pr-card {
  border: 1px solid rgba(95, 115, 136, 0.72);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.18) 32%),
    linear-gradient(180deg, #fdfefe 0%, #eef3f8 46%, #f8fafc 100%);
  box-shadow: 0 16px 30px rgba(15, 45, 72, 0.15);
  overflow: hidden;
}

.rr-show-title {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  padding: 0.17rem 0.45rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid #98a3ad;
  border-radius: 7px;
  background: linear-gradient(180deg, #e1e6ea 0%, #b5bec6 52%, #d2d8dd 100%);
  color: #102f4e;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 4px 10px rgba(38, 55, 70, 0.12);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-align: center;
}

.rr-show-title::after {
  position: absolute;
  z-index: -1;
  top: -25%;
  bottom: -25%;
  left: 0;
  width: 18%;
  content: "";
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.06) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.06) 75%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-260%) skewX(-18deg);
  animation: rr-show-title-shine 14.4s ease-in-out infinite;
}

@keyframes rr-show-title-shine {
  0%,
  8% {
    opacity: 0;
    transform: translateX(-260%) skewX(-18deg);
  }
  20% {
    opacity: 1;
  }
  84% {
    opacity: 1;
    transform: translateX(520%) skewX(-18deg);
  }
  92%,
  100% {
    opacity: 0;
    transform: translateX(520%) skewX(-18deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rr-show-title::after {
    animation: none;
    display: none;
  }
}

.rr-type {
  margin-top: 0.72rem;
}

.rr-type-title {
  margin: 0;
  padding: 0.52rem 0.8rem 0.52rem 0.92rem;
  border-radius: 7px;
  background:
    linear-gradient(135deg, var(--rr-tone-undertone), rgba(255, 255, 255, 0) 42%),
    var(--rr-tone-silver);
  font-size: 0.98rem;
  line-height: 1.25;
  text-align: left;
  border: 1px solid var(--rr-hairline-border);
  border-left: 5px solid var(--rr-tone-rail);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  color: #143556;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.rr-tone-special {
  --rr-tone-rail: #115fa8;
  --rr-tone-undertone: rgba(17, 95, 168, 0.15);
}
.rr-tone-junior {
  --rr-tone-rail: #c66b16;
  --rr-tone-undertone: rgba(198, 107, 22, 0.15);
}
.rr-tone-prefix {
  --rr-tone-rail: #117463;
  --rr-tone-undertone: rgba(17, 116, 99, 0.15);
}
.rr-tone-group {
  --rr-tone-rail: #3f8f55;
  --rr-tone-undertone: rgba(63, 143, 85, 0.2);
}
.rr-tone-breed {
  --rr-tone-rail: #b84d59;
  --rr-tone-undertone: rgba(184, 77, 89, 0.15);
}
.rr-tone-class {
  --rr-tone-rail: #6a2f7b;
  --rr-tone-undertone: rgba(106, 47, 123, 0.15);
}

.rr-tone-ccca {
  --rr-tone-rail: #00707a;
  --rr-tone-undertone: rgba(0, 112, 122, 0.15);
}

.rr-award-card {
  margin-top: 0.62rem;
  border: 1px solid var(--rr-hairline-border);
  border-left: 4px solid var(--rr-tone-rail);
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0) 40%),
    linear-gradient(180deg, #fcfdfe 0%, #edf1f5 48%, #f8fafc 100%);
  box-shadow: 0 14px 26px rgba(15, 45, 72, 0.14);
}

.rr-award-head {
  padding: 0.52rem 0.78rem;
  text-align: left;
  font-size: 0.94rem;
  font-weight: 700;
  background:
    linear-gradient(135deg, var(--rr-tone-undertone), rgba(255, 255, 255, 0) 42%),
    var(--rr-tone-silver);
  border-bottom: 1px solid var(--rr-hairline-border-soft);
  color: #143556;
}

.rr-prize {
  margin: 0;
  padding-left: 0;
  border-left: 0;
  font-size: 0.98rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.rr-award-entry {
  padding: 0.72rem 0.82rem;
  border-top: 1px solid var(--rr-hairline-border-soft);
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(244, 247, 250, 0.88) 100%);
  overflow-x: auto;
}

.rr-award-entry:nth-of-type(even) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(237, 243, 248, 0.88) 100%);
}

.rr-award-entry:first-of-type {
  border-top: 0;
}

.rr-entry-head {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  border: 0;
}

.rr-entry-head td,
.rr-entry-head th {
  border: 0;
  padding: 0;
  vertical-align: top;
}

.rr-entry-cell-copy {
  width: auto;
}

.rr-entry-cell-points {
  width: 5ch;
  max-width: 5ch;
}

.rr-entry-copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.14rem 0.52rem;
  min-width: 0;
  width: min(100%, var(--rr-detail-width));
  align-items: start;
}

.rr-entry-head--no-points .rr-points {
  display: none;
}

.rr-entry-head--no-points .rr-entry-cell-points {
  display: none;
}

.rr-ring-info {
  display: block;
  color: var(--rr-muted);
  font-size: 0.87rem;
  font-weight: 700;
  line-height: 1.18;
  text-align: left;
  white-space: normal;
}

.rr-ring-info:empty {
  display: none;
}

.rr-line1 {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.24;
  text-align: left;
  grid-column: 2;
  min-width: 0;
}

/* Stable rule for direct result-line targeting. This mirrors .rr-line1
   so live edits that target the full element path can update stylesheet
   rules rather than inline styles. */
html > body.pr-body > main.pr-shell > section.pr-card > div.pr-card__body > div.rr-award-card.rr-tone-special > div.rr-award-entry > table.rr-entry-head.rr-entry-head--no-points > tbody > tr > td.rr-entry-cell.rr-entry-cell-copy > div.rr-entry-copy > div.rr-line1 {
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.24;
	text-align: left;
}

.rr-award-card.rr-tone-special .rr-entry-head--no-points .rr-line1 {
  text-align: left;
}

.rr-award-card.rr-tone-group .rr-entry-head--no-points .rr-line1 {
  text-align: left;
}

.rr-line1-text {
  display: block;
  width: 100%;
  min-width: 0;
  white-space: normal;
  overflow: visible;
  word-break: break-word;
}

.rr-points {
  display: block;
  width: 4ch;
  max-width: 4ch;
  text-align: right;
  font-weight: 700;
  font-size: 0.96rem;
  padding-left: 0.2rem;
  min-width: 4ch;
}

.rr-points-challenge-icon {
  display: block;
  width: auto;
  height: 100%;
  max-height: 100%;
  margin-left: auto;
  object-fit: contain;
}

.rr-entry-head--challenge-icon .rr-entry-cell-points {
  position: relative;
}

.rr-entry-head--challenge-icon .rr-points {
  position: absolute;
  inset: 3px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  max-width: none;
  min-width: 0;
  padding: 0;
}

.rr-line2 {
  margin-top: 0.18rem;
  font-size: 0.87rem;
  color: var(--rr-muted);
  text-align: left;
  line-height: 1.22;
  grid-column: 2;
  display: block;
  min-width: 0;
  white-space: normal;
  overflow: visible;
  word-break: break-word;
}

.rr-ring-col {
  grid-row: 1 / span 2;
  align-self: start;
}

.rr-line2:empty {
  display: none;
}

.rr-entry-meta {
  margin-top: 0.22rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.18rem 0.4rem;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.84rem;
  color: var(--rr-muted);
}

.rr-legacy-fields {
  margin-top: 0.3rem;
  border-top: 1px dashed var(--rr-border);
  padding-top: 0.3rem;
  overflow-x: auto;
}

.rr-legacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  color: #304258;
}

.rr-legacy-table th,
.rr-legacy-table td {
  padding: 0.24rem 0.4rem;
  border-bottom: 1px solid #e5ebf4;
  text-align: left;
  vertical-align: top;
}

.rr-legacy-table th {
  width: 12rem;
  background: #f7f9fd;
  color: #556377;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: normal;
  word-break: break-word;
}

.rr-legacy-table tr:last-child th,
.rr-legacy-table tr:last-child td {
  border-bottom: 0;
}

.pr-empty {
  margin: 0.4rem 0;
  color: var(--rr-muted);
}

.pr-card-points {
  margin-top: 0.55rem;
  padding: 0.75rem 0.75rem 0.95rem;
}
.pr-muted {
  margin: 0;
  color: var(--rr-muted);
}
.pr-error {
  padding: 0.45rem 0.6rem;
  border-radius: 5px;
  border: 1px solid #d9b2b2;
  background: #fff3f3;
  color: #7a1f1f;
  font-weight: 600;
}

.rr-footer {
  margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-top: 1px solid var(--rr-border);
  text-align: center;
}

.rr-muted {
  margin: 0;
  color: var(--rr-muted);
  font-size: 0.85rem;
  text-align: center;
}

[data-rr-fragment] {
  display: none !important;
}

.rr-award-icon {
  position: absolute;
  right: 0.35rem;
  bottom: 0.35rem;
  width: 28px;
  height: 28px;
  object-fit: contain;
  pointer-events: none;
}

.ps-group-heading {
  margin: 0.85rem 0 0.5rem;
  padding: 0.55rem 0.82rem;
  width: var(--rr-detail-width);
  max-width: 100%;
  font-size: 1rem;
  border: 1px solid var(--rr-hairline-border);
  border-left: 5px solid var(--rr-tone-rail);
  border-radius: 10px;
  background:
    linear-gradient(135deg, var(--rr-tone-undertone), rgba(255, 255, 255, 0) 42%),
    var(--rr-tone-silver);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 8px 16px rgba(15, 45, 72, 0.08);
  text-align: left;
}

.ps-breed-heading {
  margin: 0.55rem 0 0.35rem;
  padding: 0.32rem 0.55rem;
  font-size: 0.95rem;
  border-left: 4px solid var(--rr-tone-rail);
  border-radius: 0 6px 6px 0;
  background:
    linear-gradient(135deg, var(--rr-tone-undertone), rgba(255, 255, 255, 0) 42%),
    var(--rr-tone-silver);
  text-align: left;
  font-weight: 600;
}

.ps-type-group {
  display: grid;
  gap: 0.62rem;
  justify-items: start;
}

.ps-type-heading {
  margin: 0.15rem 0 0.2rem;
  padding: 0.65rem 0.9rem;
  width: var(--rr-detail-width);
  max-width: 100%;
  border: 1px solid var(--rr-hairline-border);
  border-left: 4px solid var(--rr-tone-rail);
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--rr-tone-undertone), rgba(255, 255, 255, 0) 42%),
    var(--rr-tone-silver);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: #143f66;
  font-size: 1.02rem;
  font-weight: 700;
  text-align: left;
}

.ps-board-points .ps-leader-row {
  display: grid;
  grid-template-columns: 4.4rem minmax(12rem, 1.7fr) minmax(10rem, 1.25fr) 5.4rem;
  align-items: center;
  gap: 0;
  width: var(--rr-detail-width);
  max-width: 100%;
  min-height: 2.15rem;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(88, 117, 147, 0.24);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--rr-text);
  font-family: inherit;
  font-size: 0.91rem;
  line-height: 1.24;
}
.ps-board-points {
  display: grid;
  gap: 0;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}
.ps-leader-head {
  display: grid;
  grid-template-columns: 4.4rem minmax(12rem, 1.7fr) minmax(10rem, 1.25fr) 5.4rem;
  width: var(--rr-detail-width);
  max-width: 100%;
  border-bottom: 2px solid rgba(65, 109, 152, 0.44);
  color: #143f66;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}
.ps-leader-head > div,
.ps-board-points .ps-leader-row > div {
  min-width: 0;
  padding: 0.3rem 0.45rem;
}
.ps-leader-head > div:first-child,
.ps-board-points .ps-leader-row > div:first-child {
  padding-left: 0.2rem;
}
.ps-leader-head > div:last-child,
.ps-board-points .ps-leader-row > div:last-child {
  padding-right: 0.2rem;
}
.ps-type-heading {
  text-align: left;
}
.ps-rank {
  display: block;
  min-width: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-weight: 600;
  color: var(--rr-muted);
  text-align: left;
  white-space: nowrap;
}
.ps-cat-wrap {
  min-width: 0;
}
.ps-board-points .ps-leader-row:last-child {
  border-bottom: 1px solid rgba(88, 117, 147, 0.24);
}
.ps-cat-line {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.18rem 0.36rem;
  align-items: center;
  font-size: 0.96rem;
  color: var(--rr-text);
  white-space: normal;
  line-height: 1.22;
}
.ps-cat-name {
  display: block;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.ps-cat-sep {
  color: #7b8b9b;
}
.ps-exh-name {
  min-width: 0;
  color: var(--rr-muted);
  overflow-wrap: anywhere;
}
.ps-points {
  display: block;
  justify-content: flex-end;
  font-weight: 700;
  font-size: 0.93rem;
  text-align: right;
  white-space: nowrap;
}

.ps-points strong {
  display: inline;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--rr-text);
  box-shadow: none;
  letter-spacing: 0;
}

.ps-cell-label {
  display: none;
}

.ps-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(88, 117, 147, 0.24);
  color: #466077;
  font-size: 0.88rem;
}

.ps-pager .ps-page,
.ps-pager .ps-next,
.ps-pager .ps-last {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  min-height: 2rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(88, 117, 147, 0.32);
  background: linear-gradient(180deg, #ffffff 0%, #ecf3fb 100%);
  color: #174d80;
  font-weight: 700;
  text-decoration: none;
}

.ps-pager .ps-page--current {
  background: linear-gradient(180deg, #1a6db8 0%, #0f5da8 100%);
  border-color: #0f5da8;
  color: #fff;
  box-shadow: 0 8px 14px rgba(15, 45, 72, 0.12);
}

.ps-bracket,
.ps-sep {
  color: #7a8999;
  font-weight: 700;
}


body.ps-page .ps-board-points {
  margin-inline: auto;
}

body.ps-page .ps-leader-head > div,
body.ps-page .ps-board-points .ps-leader-row > div {
  padding: 0;
  border-right: 1px solid rgba(88, 117, 147, 0.3);
  border-bottom: 1px solid rgba(88, 117, 147, 0.22);
  text-align: center;
}

body.ps-page .ps-leader-head > div {
  border-top: 1px solid rgba(88, 117, 147, 0.3);
}

body.ps-page .ps-leader-head > div:first-child,
body.ps-page .ps-board-points .ps-leader-row > div:first-child {
  border-left: 1px solid rgba(88, 117, 147, 0.3);
}

body.ps-page .ps-rank,
body.ps-page .ps-cat-name,
body.ps-page .ps-exh-name,
body.ps-page .ps-points {
  text-align: center;
}

body.ps-page .ps-cat-name,
body.ps-page .ps-exh-name {
  overflow-wrap: anywhere;
  word-break: normal;
}


body.rr-page:not(.ps-page) .rr-main {
  margin-top: 0.45rem;
  margin-bottom: 0.7rem;
}

body.rr-page:not(.ps-page) .rr-report-heading {
  margin: 0 0 0.35rem;
  text-align: center;
}

body.rr-page:not(.ps-page) .rr-report-heading h1 {
  margin: 0;
  color: var(--rr-text);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.15;
}

body.rr-page:not(.ps-page) .rr-search-panel.rr-search-card {
  margin-top: 0;
}

body.rr-page:not(.ps-page) #rrSearchForm.rr-search-form {
  padding-top: 0.5rem !important;
  padding-bottom: 0.55rem !important;
}


body.rr-page:not(.ps-page) #rrSearchForm .rr-filter-action-row {
  align-items: end;
  min-height: 2.28rem;
}

body.rr-page:not(.ps-page) #rrSearchForm .rr-search-actions {
  align-items: end;
  align-self: end;
  display: flex;
  padding-top: 0;
}

body.rr-page:not(.ps-page) #rrSearchForm .rr-search-actions button {
  box-sizing: border-box;
  height: 2.28rem;
  min-height: 2.28rem;
  padding-top: 0.28rem;
  padding-bottom: 0.28rem;
}

body.rr-page:not(.ps-page) .rr-results-shell,
body.rr-page:not(.ps-page) .pr-card,
body.rr-page:not(.ps-page) .rr-award-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.rr-page:not(.ps-page) .pr-card__body {
  gap: 0.32rem;
  padding: 0.28rem 0;
}

body.rr-page:not(.ps-page) .rr-results-card::before {
  display: none;
}

body.rr-page:not(.ps-page) .rr-show-title-row {
  gap: 0.3rem;
  padding: 0.08rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.rr-page:not(.ps-page) .rr-show-title,
body.rr-page:not(.ps-page) .rr-type-title,
body.rr-page:not(.ps-page) .rr-award-head {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--rr-text);
}

body.rr-page:not(.ps-page) .rr-show-title::after {
  display: none;
}


body.rr-page:not(.ps-page) .rr-type {
  margin-top: 0.35rem;
}


body.rr-page:not(.ps-page) .rr-award-card {
  margin-top: 0.12rem;
  overflow: visible;
}


body.rr-page:not(.ps-page) .rr-award-entry {
  padding: 0.12rem 0;
  border-top: 1px solid rgba(88, 117, 147, 0.14);
  background: transparent;
}


body.rr-page:not(.ps-page) .rr-line2,
body.rr-page:not(.ps-page) .rr-ring-info,
body.rr-page:not(.ps-page) .rr-entry-meta {
  font-size: 0.78rem;
  line-height: 1.14;
}

/* Shared mobile landscape/tablet results layout. */
@media (max-width: 750px) {
  .rr-main,
  .pr-shell {
    width: min(var(--rr-report-width), 100% - 1rem);
    margin: 0.7rem auto 1rem;
  }
  .rr-search-panel {
    width: min(var(--rr-report-width), 100% - 1rem);
    margin-top: 0.6rem;
    padding: 0.6rem;
  }
  .rr-header {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
  .rr-title {
    font-size: 1.22rem;
  }
  .rr-nav {
    gap: 0.32rem 0.45rem;
  }
  .rr-nav a {
    flex: 1 1 auto;
    justify-content: center;
  }
  .rr-search-form,
  .rr-search-panel,
  .rr-search-grid {
    grid-template-columns: 1fr;
  }
  .rr-filter-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.32rem;
    padding: 0.58rem 0.7rem;
  }
  .rr-filter-panel-head span {
    align-self: flex-start;
    max-width: 100%;
    white-space: normal;
  }
  .rr-filter,
  .rr-filter--year,
  .rr-filter--show,
  .rr-filter--breed,
  .rr-filter--award,
  .rr-filter--challenge,
  .rr-filter--cat,
  .rr-filter--owner {
    grid-column: 1 / -1;
  }
  body.rr-page #rrSearchForm .rr-filter,
  body.rr-page #rrSearchForm .rr-filter--year,
  body.rr-page #rrSearchForm .rr-filter--show,
  body.rr-page #rrSearchForm .rr-filter--breed,
  body.rr-page #rrSearchForm .rr-filter--award,
  body.rr-page #rrSearchForm .rr-filter--challenge,
  body.rr-page #rrSearchForm .rr-filter--cat,
  body.rr-page #rrSearchForm .rr-filter--owner,
  body.ps-page #psSearchForm .rr-filter,
  body.ps-page #psSearchForm .rr-filter--year,
  body.ps-page #psSearchForm .rr-filter--award,
  body.ps-page #psSearchForm .rr-filter--cat,
  body.ps-page #psSearchForm .rr-filter--owner,
  body.ps-page #psSearchForm .ps-filter--exhibitor,
  body.rr-page #rrSearchForm .rr-filter-action-row,
  body.ps-page #psSearchForm .rr-search-actions {
    grid-column: 1 / -1 !important;
  }
  .rr-field,
  .rr-search-field {
    grid-template-columns: 1fr;
  }
  .rr-field span,
  .rr-search-field label {
    text-align: left;
  }
  .rr-search-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    flex-wrap: nowrap;
    width: min(100%, 18rem);
  }
  .rr-filter-action-row {
    align-items: stretch;
    flex-direction: column;
    gap: 0.45rem;
  }
  .rr-load-message {
    width: 100%;
  }
  .rr-search-actions {
    margin-left: 0;
    align-self: flex-end;
  }
  .rr-page .rr-search-actions.hwrap {
    margin-left: 0;
  }
  .rr-search-actions button {
    width: 100%;
  }
  .rr-results-card {
    padding-left: 0.62rem;
    padding-right: 0.62rem;
  }
  .rr-show-pager__link {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.8rem;
  }
  .rr-entry-head {
    table-layout: auto;
    width: 100%;
    max-width: 100%;
  }
  .rr-entry-head tbody,
  .rr-entry-head tr,
  .rr-entry-head td {
    display: block;
    width: 100%;
  }
  .rr-entry-cell-points {
    margin-top: 0.12rem;
  }
  .rr-line1,
  .rr-points {
    text-align: left;
  }
  .rr-points {
    justify-self: start;
    padding-left: 0;
  }
  .rr-entry-head--challenge-icon .rr-entry-cell-points {
    position: static;
  }
  .rr-entry-head--challenge-icon .rr-points {
    position: static;
    inset: auto;
    display: inline-flex;
    width: auto;
    max-width: none;
    min-width: 0;
    padding: 0;
  }
  .rr-entry-head--challenge-icon .rr-points-challenge-icon {
    height: 1.2rem;
    max-height: none;
  }

  .ps-cat-line {
    flex-wrap: wrap;
    white-space: normal;
    justify-content: flex-start;
  }

  .ps-type-group,
  .ps-group-heading,
  .ps-type-heading,
  .ps-leader-head,
  .ps-board-points .ps-leader-row {
    width: 100%;
    max-width: 100%;
  }

  .ps-leader-head,
  .ps-board-points .ps-leader-row {
    grid-template-columns: 3.7rem minmax(9rem, 1.45fr) minmax(8rem, 1fr) 4.7rem;
  }
}

/* Extra-small device pass for long point score and results pages. */
@media (max-width: 520px) {
  body.rr-page:not(.ps-page) .rr-type-title,
  body.rr-page:not(.ps-page) .rr-award-card .rr-prize {
    text-align: left !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-award-head {
    justify-content: flex-start !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-copy {
    grid-template-columns: max-content minmax(0, 1fr) !important;
  }

  .rr-main,
  .pr-shell,
  .rr-search-panel {
    width: min(var(--rr-report-width), 100% - 0.7rem) !important;
  }

  .rr-search-panel,
  .rr-results-card,
  .pr-card {
    padding-left: 0.42rem;
    padding-right: 0.42rem;
  }

  .rr-results-title,
  .rr-show-title,
  .rr-type-title,
  .rr-award-head,
  .ps-group-heading {
    padding-left: 0.48rem;
    padding-right: 0.48rem;
  }

  .rr-header {
    padding-top: 0.82rem;
    padding-bottom: 0.68rem;
    gap: 0.38rem;
  }

  .rr-title {
    font-size: 1.08rem;
  }

  .rr-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rr-nav a {
    width: 100%;
    padding: 0.34rem 0.58rem;
    font-size: 0.82rem;
  }

  .rr-search-panel {
    padding-top: 0.72rem !important;
    padding-bottom: 0.72rem !important;
  }

  body.rr-page #rrSearchForm > .rr-search-grid,
  body.ps-page #psSearchForm > .rr-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.58rem 0.58rem !important;
  }

  body.rr-page #rrSearchForm .rr-filter--year,
  body.rr-page #rrSearchForm .rr-filter--breed,
  body.rr-page #rrSearchForm .rr-filter--award,
  body.rr-page #rrSearchForm .rr-filter--challenge,
  body.ps-page #psSearchForm .rr-filter--year,
  body.ps-page #psSearchForm .rr-filter--award {
    grid-column: span 1 !important;
  }

  body.rr-page #rrSearchForm .rr-filter--show,
  body.rr-page #rrSearchForm .rr-filter--cat,
  body.rr-page #rrSearchForm .rr-filter--owner,
  body.ps-page #psSearchForm .rr-filter--cat,
  body.ps-page #psSearchForm .rr-filter--owner,
  body.ps-page #psSearchForm .ps-filter--exhibitor,
  body.rr-page #rrSearchForm .rr-search-actions,
  body.ps-page #psSearchForm .rr-search-actions {
    grid-column: 1 / -1 !important;
  }

  .rr-filter > span {
    font-size: 0.71rem;
  }

  body.rr-page #rrSearchForm .rr-filter select,
  body.rr-page #rrSearchForm .rr-filter input,
  body.ps-page #psSearchForm .rr-filter select,
  body.ps-page #psSearchForm .rr-filter input,
  .rr-search-actions button {
    min-height: 2.5rem !important;
    font-size: 0.84rem;
  }

  .rr-search-actions button {
    padding-top: 0.36rem;
    padding-bottom: 0.36rem;
  }

  .rr-results-title {
    font-size: 0.94rem;
  }

  .rr-show-title {
    font-size: 1rem;
    padding-top: 0.58rem;
    padding-bottom: 0.58rem;
  }

  .rr-show-title-row {
    gap: 0.38rem;
  }

  .rr-show-pager__link {
    width: 2rem;
    height: 2rem;
    font-size: 1.55rem;
  }

  .rr-type-title,
  .rr-award-head,
  .rr-prize,
  .rr-line1,
  .rr-points {
    font-size: 0.84rem;
  }

  .rr-ring-info,
  .rr-line2,
  .rr-entry-meta,
  .rr-legacy-table,
  .rr-legacy-table th {
    font-size: 0.75rem;
  }

  .rr-award-card {
    margin-top: 0.45rem;
  }

  .rr-award-entry {
    padding: 0.5rem 0.54rem 0.5rem 0.54rem;
  }

  .rr-entry-cell-points {
    margin-top: 0.06rem;
  }

  .rr-entry-copy {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }

  .rr-ring-col {
    grid-row: auto;
  }

  .rr-ring-info,
  .rr-line1,
  .rr-line2 {
    grid-column: 1;
  }

  .rr-points {
    display: inline-flex;
    justify-content: flex-start;
    margin-top: 0.12rem;
  }

  .rr-award-icon {
    right: 0.28rem;
    top: 0.34rem;
    bottom: auto;
    width: 22px;
    height: 22px;
  }

  .ps-group-heading {
    margin: 0.65rem 0 0.35rem;
    font-size: 0.83rem;
  }

  .ps-type-heading {
    padding: 0.52rem 0.58rem 0.52rem 0.68rem;
    font-size: 0.88rem;
  }

  .ps-board-points .ps-leader-row {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 0;
    padding: 0.36rem 0;
  }

  .ps-leader-head {
    display: none;
  }

  .ps-board-points .ps-leader-row > div {
    display: grid;
    grid-template-columns: 6.8rem minmax(0, 1fr);
    gap: 0.4rem;
    padding: 0.12rem 0.2rem;
  }

  .ps-cell-label {
    display: inline;
    color: var(--rr-muted);
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.18;
  }

  .ps-cat-wrap {
    grid-column: auto;
  }

  .ps-points {
    grid-column: auto;
    grid-row: auto;
    justify-content: initial;
    align-self: start;
    text-align: left;
  }

  .ps-points strong {
    min-width: 0;
    min-height: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .ps-rank {
    min-width: 0;
    min-height: 0;
    font-size: 0.8rem;
  }

  .ps-cat-line {
    font-size: 0.81rem;
    line-height: 1.18;
  }

  .ps-pager {
    gap: 0.28rem;
    font-size: 0.8rem;
  }
}

/* Show Results option 3: narrow compact ledger layout. */
body.rr-page:not(.ps-page) {
  --rr-report-width: 780px;
  --rr-detail-width: 100%;
  --rr-ledger-tone: var(--rr-navy-1);
  --rr-ledger-line: rgba(10, 43, 74, 0.38);
  --rr-ledger-line-soft: rgba(68, 78, 90, 0.26);
}

body.rr-page:not(.ps-page) .rr-tone-special {
  --rr-ledger-tone: #0b5f9e;
  --rr-ledger-line: rgba(11, 95, 158, 0.5);
  --rr-ledger-line-soft: rgba(11, 95, 158, 0.23);
}

body.rr-page:not(.ps-page) .rr-tone-junior {
  --rr-ledger-tone: #8a5100;
  --rr-ledger-line: rgba(138, 81, 0, 0.5);
  --rr-ledger-line-soft: rgba(138, 81, 0, 0.24);
}

body.rr-page:not(.ps-page) .rr-tone-group {
  --rr-ledger-tone: #237346;
  --rr-ledger-line: rgba(35, 115, 70, 0.5);
  --rr-ledger-line-soft: rgba(35, 115, 70, 0.24);
}

body.rr-page:not(.ps-page) .rr-tone-breed {
  --rr-ledger-tone: #9d4050;
  --rr-ledger-line: rgba(157, 64, 80, 0.5);
  --rr-ledger-line-soft: rgba(157, 64, 80, 0.24);
}

body.rr-page:not(.ps-page) .rr-tone-class {
  --rr-ledger-tone: #5f348f;
  --rr-ledger-line: rgba(95, 52, 143, 0.5);
  --rr-ledger-line-soft: rgba(95, 52, 143, 0.24);
}

body.rr-page:not(.ps-page) .rr-tone-ccca {
  --rr-ledger-tone: #00707a;
  --rr-ledger-line: rgba(0, 112, 122, 0.52);
  --rr-ledger-line-soft: rgba(0, 112, 122, 0.24);
}

body.rr-page:not(.ps-page) .rr-tone-prefix {
  --rr-ledger-tone: #117463;
  --rr-ledger-line: rgba(17, 116, 99, 0.5);
  --rr-ledger-line-soft: rgba(17, 116, 99, 0.24);
}

body.rr-page:not(.ps-page) .rr-main,
body.rr-page:not(.ps-page).pr-body .pr-shell {
  width: min(var(--rr-report-width), calc(100% - 1.25rem));
  margin: 0.45rem auto 0.75rem;
}

body.rr-page:not(.ps-page) .rr-report-heading {
  margin: 0 0 0.22rem;
}

body.rr-page:not(.ps-page) .rr-report-heading h1 {
  font-size: 1rem;
  line-height: 1.1;
}

body.rr-page:not(.ps-page) .rr-show-filter-group {
  margin: 0 0 0.42rem;
}

body.rr-page:not(.ps-page) .rr-search-panel.rr-search-card {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.rr-page:not(.ps-page) .rr-search-panel::before,
body.rr-page:not(.ps-page) .rr-show-filter-group .rr-search-panel::before {
  display: none;
}

body.rr-page:not(.ps-page) .rr-filter-panel-head {
  display: none;
}

body.rr-page:not(.ps-page) #rrSearchForm.rr-search-form {
  padding: 0 !important;
}

body.rr-page:not(.ps-page) #rrSearchForm > .rr-search-grid {
  grid-template-columns:
    minmax(4.2rem, 0.55fr)
    minmax(8rem, 1.4fr)
    minmax(6.2rem, 0.9fr)
    minmax(5.8rem, 0.85fr)
    minmax(5.8rem, 0.85fr)
    minmax(5.8rem, 0.85fr)
    minmax(5.8rem, 0.85fr)
    auto !important;
  gap: 0.2rem 0.28rem !important;
  align-items: end !important;
}

body.rr-page:not(.ps-page) #rrSearchForm .rr-filter,
body.rr-page:not(.ps-page) #rrSearchForm .rr-filter-action-row {
  grid-column: auto !important;
}

body.rr-page:not(.ps-page) #rrSearchForm .rr-filter > span {
  margin-bottom: 0.04rem;
  font-size: 0.62rem;
  line-height: 1;
  letter-spacing: 0.025em;
}

body.rr-page:not(.ps-page) #rrSearchForm .rr-filter select,
body.rr-page:not(.ps-page) #rrSearchForm .rr-filter input,
body.rr-page:not(.ps-page) #rrSearchForm .rr-search-actions button {
  min-height: 1.9rem !important;
  height: 1.9rem !important;
  font-size: 0.78rem !important;
  line-height: 1.1;
}

body.rr-page:not(.ps-page) #rrSearchForm .rr-filter select,
body.rr-page:not(.ps-page) #rrSearchForm .rr-filter input {
  padding: 0.2rem 0.34rem !important;
  border-radius: 0 !important;
}

body.rr-page:not(.ps-page) #rrSearchForm .rr-filter-action-row {
  min-height: 1.9rem;
  align-self: end;
}

body.rr-page:not(.ps-page) #rrSearchForm .rr-search-actions {
  gap: 0.2rem;
  align-items: end;
  align-self: end;
}

body.rr-page:not(.ps-page) #rrSearchForm .rr-search-actions button {
  min-width: 3.85rem;
  padding: 0.18rem 0.48rem;
  border-radius: 0;
  box-shadow: none;
}

body.rr-page:not(.ps-page) .rr-results-shell,
body.rr-page:not(.ps-page) .rr-results-card,
body.rr-page:not(.ps-page) .rr-results-shell .pr-card__body {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

body.rr-page:not(.ps-page) .rr-results-shell .pr-card__body {
  padding: 0;
  gap: 0.28rem;
}

body.rr-page:not(.ps-page) .rr-show-title-row,
body.rr-page:not(.ps-page) .rr-all-show-break {
  margin: 0.5rem 0 0.24rem;
  padding: 0;
}

body.rr-page:not(.ps-page) .rr-show-title {
  padding: 0 0 0.12rem;
  border-bottom: 2px solid rgba(10, 43, 74, 0.48);
  color: var(--rr-navy-1);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: left;
}


body.rr-page:not(.ps-page) .rr-type-title {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0;
  color: var(--rr-ledger-tone);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.12;
  text-align: left;
  white-space: nowrap;
}

body.rr-page:not(.ps-page) .rr-type-title::after {
  content: "";
  flex: 1 1 auto;
  border-top: 2px solid var(--rr-ledger-line);
}


body.rr-page:not(.ps-page) .rr-award-head {
  display: flex;
  align-items: center;
  gap: 0.36rem;
  padding: 0.12rem 0 0.04rem;
  color: var(--rr-ledger-tone);
  line-height: 1.1;
}

body.rr-page:not(.ps-page) .rr-award-head::after {
  content: "";
  flex: 1 1 auto;
  border-top: 2px solid var(--rr-ledger-line);
}

body.rr-page:not(.ps-page) .rr-prize {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

body.rr-page:not(.ps-page) .rr-prize-points {
  display: none;
  color: var(--rr-ledger-tone);
  font-weight: 700;
}

body.rr-page:not(.ps-page) .rr-award-card--points-in-head .rr-prize-points {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  margin-left: auto;
  white-space: nowrap;
}

body.rr-page:not(.ps-page) .rr-award-card--points-in-head .rr-entry-cell-points {
  display: none !important;
}

body.rr-page:not(.ps-page) .rr-award-entry,
body.rr-page:not(.ps-page) .rr-award-entry:nth-of-type(even) {
  padding: 0.12rem 0;
  border-top: 2px solid var(--rr-ledger-line-soft);
  background: transparent;
  overflow-x: visible;
}

body.rr-page:not(.ps-page) .rr-entry-head {
  table-layout: fixed;
}

body.rr-page:not(.ps-page) .rr-entry-cell-copy {
  width: auto;
}

body.rr-page:not(.ps-page) .rr-entry-cell-points {
  width: 4.8rem;
  max-width: 4.8rem;
  vertical-align: middle;
}

body.rr-page:not(.ps-page) .rr-entry-copy {
  display: grid;
  grid-template-columns: 6.8rem minmax(0, 1fr);
  gap: 0.06rem 0.5rem;
  align-items: start;
  width: 100%;
}

body.rr-page:not(.ps-page) .rr-ring-col {
  grid-row: 1 / span 2;
  align-self: start;
}

body.rr-page:not(.ps-page) .rr-ring-info {
  grid-column: 1;
  color: var(--rr-muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.08;
  text-align: right;
  white-space: normal;
}

body.rr-page:not(.ps-page) .rr-line1,
body.rr-page:not(.ps-page) .rr-line2 {
  grid-column: 2;
  text-align: left;
}

body.rr-page:not(.ps-page) .rr-line1 {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.1;
}

body.rr-page:not(.ps-page) .rr-line2 {
  margin-top: 0;
  color: var(--rr-muted);
  font-size: 0.72rem;
  line-height: 1.08;
}

body.rr-page:not(.ps-page) .rr-points {
  width: auto;
  min-width: 0;
  max-width: none;
  padding-left: 0;
  color: var(--rr-navy-1);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: right;
}

body.rr-page:not(.ps-page) .rr-entry-head--challenge-icon .rr-points {
  inset: 1px 0;
}

body.rr-page:not(.ps-page) .rr-points-challenge-icon {
  max-height: 1.25rem;
}

body.rr-page:not(.ps-page) .rr-entry-meta,
body.rr-page:not(.ps-page) .rr-legacy-fields {
  margin-top: 0.04rem;
}

@media (max-width: 900px) {
  body.rr-page:not(.ps-page) #rrSearchForm > .rr-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.28rem 0.38rem !important;
  }

  body.rr-page:not(.ps-page) #rrSearchForm .rr-filter--show,
  body.rr-page:not(.ps-page) #rrSearchForm .rr-filter--breed,
  body.rr-page:not(.ps-page) #rrSearchForm .rr-filter--award,
  body.rr-page:not(.ps-page) #rrSearchForm .rr-filter--challenge,
  body.rr-page:not(.ps-page) #rrSearchForm .rr-filter--cat,
  body.rr-page:not(.ps-page) #rrSearchForm .rr-filter--owner,
  body.rr-page:not(.ps-page) #rrSearchForm .rr-filter-action-row {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 520px) {
  body.rr-page:not(.ps-page) .rr-main,
  body.rr-page:not(.ps-page).pr-body .pr-shell {
    width: min(100% - 0.7rem, var(--rr-report-width));
    margin-top: 0.32rem;
  }

  body.rr-page:not(.ps-page) #rrSearchForm > .rr-search-grid {
    grid-template-columns: 1fr !important;
    gap: 0.24rem !important;
  }

  body.rr-page:not(.ps-page) #rrSearchForm .rr-search-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  body.rr-page:not(.ps-page) #rrSearchForm .rr-search-actions button {
    width: 100%;
  }

  body.rr-page:not(.ps-page) .rr-type-title,
  body.rr-page:not(.ps-page) .rr-prize {
    white-space: normal;
  }

body.rr-page:not(.ps-page) .rr-entry-cell-points {
    width: 3.8rem;
    max-width: 3.8rem;
  }

  body.rr-page:not(.ps-page) .rr-entry-copy {
    grid-template-columns: 4.7rem minmax(0, 1fr);
    gap: 0.04rem 0.32rem;
  }

  body.rr-page:not(.ps-page) .rr-ring-info,
  body.rr-page:not(.ps-page) .rr-line2 {
    font-size: 0.68rem;
  }

  body.rr-page:not(.ps-page) .rr-line1,
  body.rr-page:not(.ps-page) .rr-points {
    font-size: 0.76rem;
  }
}

@media (min-width: 621px) {
  

  
}

/* Final Point Scores-only heading/alignment refinements. */


/* Final Point Scores compact card-per-section treatment. */


body.ps-page .ps-section-card .ps-leader-head,
body.ps-page .ps-section-card .ps-board-points .ps-leader-row,
body.ps-page .ps-section-card .ps-leader-row {
  width: 100%;
}


body.ps-page .ps-section-card .ps-board-points .ps-leader-row,
body.ps-page .ps-section-card .ps-leader-row {
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  border-bottom-color: rgba(68, 78, 90, 0.16) !important;
}

@media (max-width: 520px) {
  
}

/* 2026-08-15 visual refresh: embedded results app. */


body :is(.rr-header, .rr-search-panel, .rr-section-card, .ps-section-card, .rr-empty, .rr-error) {
  border: 1px solid rgba(109, 144, 174, 0.18);
  box-shadow: 0 18px 36px rgba(13, 44, 74, 0.08);
}

body .rr-main {
  width: min(1380px, calc(100vw - 1rem));
  padding-inline: 0.15rem;
}

body .rr-header {
  padding: 1.1rem 1.2rem 1rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 32%),
    linear-gradient(135deg, rgba(11, 58, 96, 0.98), rgba(34, 100, 149, 0.9));
}

body .rr-header :is(h1, p, .rr-kicker) {
  color: #f8fbff !important;
}

body .rr-header p {
  max-width: 54rem;
  line-height: 1.65;
}

body .rr-search-panel {
  padding: 1rem 1.05rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(242, 247, 252, 0.98));
}

body .rr-search-grid {
  gap: 0.75rem !important;
}

body :is(.rr-search-panel label, .rr-search-panel legend, .ps-type-heading, .ps-group-heading, .ps-breed-heading) {
  color: #123e66;
}

body :is(.rr-search-panel input, .rr-search-panel select) {
  min-height: 2.75rem;
  border-radius: 14px !important;
  border-color: #84afcc !important;
  background: #ffffff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 1px 2px rgba(13, 44, 74, 0.03);
}

body :is(.rr-search-panel input, .rr-search-panel select):focus {
  border-color: #2f76b0 !important;
  box-shadow: 0 0 0 3px rgba(47, 118, 176, 0.16) !important;
}

body .rr-search-actions :is(button, .rr-button, .rr-reset-link) {
  border-radius: 999px !important;
  font-weight: 700;
}

body .rr-section-card,
body.ps-page .ps-section-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(243, 248, 252, 0.98));
}

body .rr-section-card {
  padding: 0.95rem 1rem 1rem;
}

body .rr-results-meta,
body .rr-result-summary,
body .ps-board-points .ps-leader-row {
  color: #355169;
}

body .rr-table-scroll {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
}

body .rr-table-scroll table th {
  background: #dceaf6;
  color: #103e67;
}

body.ps-page .ps-section-card {
  margin-top: 0.55rem;
  margin-bottom: 0.75rem;
  padding: 0.45rem 0.8rem 0.7rem;
  border-left-width: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(242, 248, 252, 0.98));
}

body.ps-page .ps-section-card .ps-leader-head {
  padding-bottom: 0.32rem;
}

body.ps-page .ps-board-points .ps-leader-row {
  padding-top: 0.42rem;
  padding-bottom: 0.42rem;
}

@media (max-width: 760px) {
  body .rr-main {
    width: min(100vw - 0.35rem, 1380px);
  }

  body :is(.rr-header, .rr-main, .rr-search-panel, .rr-section-card, .ps-section-card, .rr-empty, .rr-error) {
    border-radius: 16px;
  }
}

/* 2026-08-15 stripped-back correction. */
body.rr-page,
body.ps-page {
  background: #d9e6f2;
}

body :is(.rr-header, .rr-main, .rr-search-panel, .rr-section-card, .ps-section-card, .rr-empty, .rr-error) {
  border-radius: 0 !important;
  box-shadow: none !important;
}

body .rr-header {
  padding: 0.75rem 0.9rem 0.7rem;
}

body .rr-search-panel,
body .rr-section-card,
body.ps-page .ps-section-card {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

body .rr-results-meta,
body .rr-result-summary,
body .ps-board-points .ps-leader-row,
body .rr-header p {
  line-height: 1.35;
}

body :is(.rr-search-panel input, .rr-search-panel select) {
  min-height: 2.3rem;
  border-radius: 0 !important;
  box-shadow: none;
}

body .rr-search-actions :is(button, .rr-button, .rr-reset-link) {
  border-radius: 0 !important;
}

/* Show Results closeout: clean, left-aligned headings with in-title navigation. */
body.rr-page:not(.ps-page) .rr-selected-show-break.rr-show-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem;
  align-items: center;
}

body.rr-page:not(.ps-page) .rr-selected-show-break .rr-show-title {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  text-align: left;
}

body.rr-page:not(.ps-page) .rr-selected-show-break .rr-show-nav-controls {
  display: flex;
  grid-column: 2;
  grid-row: 1;
  gap: 0.18rem;
  align-items: center;
  justify-content: flex-end;
}

body.rr-page:not(.ps-page) .rr-selected-show-break .rr-show-pager__link {
  width: 1.75rem;
  height: 1.75rem;
  font-size: 1.25rem;
}

body.rr-page:not(.ps-page) .rr-type-title,
body.rr-page:not(.ps-page) .rr-award-head,
body.rr-page:not(.ps-page) .rr-prize {
  justify-content: flex-start !important;
  text-align: left !important;
}

/* Results-wide readable data hierarchy: labels at 1rem, data at 1.1rem. */
body.rr-page .rr-filter,
body.rr-page .rr-filter > span,
body.ps-page .ps-leader-head,
body.ps-page .ps-cell-label {
  font-size: 1rem !important;
}

body.rr-page .rr-filter input,
body.rr-page .rr-filter select,
body.rr-page:not(.ps-page) .rr-award-card .rr-line1,
body.rr-page:not(.ps-page) .rr-award-card .rr-points,
body.ps-page .ps-board-points .ps-leader-row,
body.ps-page .ps-board-points .ps-leader-row .ps-cell-value,
body.ps-page .ps-board-points .ps-leader-row .ps-cat-name,
body.ps-page .ps-board-points .ps-leader-row .ps-exh-name,
body.ps-page .ps-board-points .ps-leader-row .ps-points {
  font-size: 1.1rem !important;
}


body.ps-page .ps-report-intro {
  width: min(var(--rr-detail-width), calc(100% - 1.25rem));
  max-width: var(--rr-detail-width);
  margin: 0.45rem auto 0.25rem;
  text-align: center;
}

body.ps-page .ps-report-intro h1 {
  margin: 0;
  color: var(--rr-navy-1);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.12;
}

body.ps-page .ps-report-intro p {
  max-width: 34rem;
  margin: 0.12rem auto 0;
  color: var(--rr-muted);
  font-size: 0.78rem;
  line-height: 1.22;
}

/* Final Show Results compact card-per-prize treatment. */
body.rr-page:not(.ps-page) .rr-award-card {
  margin: 0.24rem 0 0.3rem !important;
  padding: 0.12rem 0.42rem 0.16rem !important;
  border: 1px solid var(--rr-ledger-line-soft) !important;
  border-left-width: 1px !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.58) !important;
  box-shadow: 0 1px 2px rgba(10, 43, 74, 0.05) !important;
}

body.rr-page:not(.ps-page) .rr-award-head {
  display: flex !important;
  align-items: center !important;
  gap: 0.36rem !important;
  margin: 0 !important;
  padding: 0.02rem 0 0.12rem !important;
  border-bottom: 1px solid var(--rr-ledger-line-soft) !important;
  color: var(--rr-ledger-tone) !important;
}

body.rr-page:not(.ps-page) .rr-award-head::after {
  display: none !important;
}

body.rr-page:not(.ps-page) .rr-prize {
  color: var(--rr-ledger-tone) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
}

body.rr-page:not(.ps-page) .rr-award-head + .rr-award-entry {
  border-top: 0 !important;
}

body.rr-page:not(.ps-page) .rr-award-card .rr-award-entry,
body.rr-page:not(.ps-page) .rr-award-card .rr-award-entry:nth-of-type(even) {
  padding: 0.1rem 0 !important;
  border-top: 1px solid rgba(68, 78, 90, 0.16) !important;
  background: transparent !important;
}

.rr-line2-owner,
.rr-line2-breeder,
.rr-line2-judge {
  display: block;
}

.rr-line2-cage-desktop {
  display: none;
}

.rr-ring-challenge-icon {
  display: none;
  width: 20px;
  height: 20px;
  margin-top: 0.12rem;
  object-fit: contain;
}

@media (min-width: 521px) {
  body.rr-page:not(.ps-page) .rr-type-title {
    text-align: center !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-copy {
    grid-template-columns: 3rem minmax(0, 1fr) !important;
    gap: 0.06rem 0.05rem !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-col,
  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-info {
    display: contents;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2 {
    grid-column: 2 !important;
    width: 100%;
    text-align: left !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2 {
    padding-left: 0;
    text-align: left !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1 {
    grid-row: 1 !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line2 {
    grid-row: 2 !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-cage-detail {
	display: block;
	grid-column: 1 !important;
	grid-row: 2 !important;
	margin-top: 0;
	color: #929ca7;
	font-size: 0.68rem;
	font-weight: 600;
	line-height: 1.05;
	text-align: left !important;
	width: 100%;
	padding: 0px;
	justify-self: stretch;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-label {
    display: block;
    grid-column: 1 !important;
    grid-row: 1 !important;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: left !important;
    width: 100%;
    justify-self: stretch;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-label:not(:empty)::after {
    content: " -";
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-challenge-icon {
    grid-column: 1 !important;
    grid-row: 3 !important;
    justify-self: start;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-cage-separator {
    display: none;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-cage-desktop {
    display: none !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1-name + .rr-line1-detail:not(:has(.rr-line1-separator))::before {
    content: " - ";
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-judge {
    margin-top: 0.08rem;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-owner,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-breeder,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-judge,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-cage-desktop {
    display: inline;
    margin: 0;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-owner:has(~ .rr-line2-breeder)::after,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-owner:has(~ .rr-line2-judge)::after,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-breeder:has(~ .rr-line2-judge)::after {
    content: " | ";
  }

}

body.rr-page:not(.ps-page) .rr-award-card .rr-entry-copy {
  gap: 0.04rem 0.44rem !important;
}

body.rr-page:not(.ps-page) .rr-award-card .rr-ring-info,
body.rr-page:not(.ps-page) .rr-award-card .rr-line2,
body.rr-page:not(.ps-page) .rr-award-card .rr-entry-meta {
  font-size: 0.7rem !important;
  line-height: 1.08 !important;
}

body.rr-page:not(.ps-page) .rr-award-card .rr-line1,
body.rr-page:not(.ps-page) .rr-award-card .rr-points {
  font-size: 0.8rem !important;
  line-height: 1.1 !important;
}

@media (max-width: 520px) {
  body.rr-page:not(.ps-page) .rr-award-card {
    margin-top: 0.3rem !important;
    padding: 0.14rem 0.34rem 0.18rem !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-award-entry,
  body.rr-page:not(.ps-page) .rr-award-card .rr-award-entry:nth-of-type(even) {
    margin: 0.22rem 0.12rem !important;
    padding: 0.16rem 0.22rem !important;
    border: 1px solid rgba(68, 78, 90, 0.2) !important;
    border-radius: 0.28rem;
    box-shadow: 0 1px 2px rgba(31, 57, 79, 0.1);
  }

  body.rr-page:not(.ps-page) .rr-prize {
    white-space: normal !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2 {
    text-align: center !important;
  }
}

/* Final Point Scores-only heading/alignment refinements. */


/* Final filter-layout overrides: keep row wrappers stacked over legacy grid rules. */
body.rr-page:not(.ps-page) #rrSearchForm > .rr-search-grid.rr-filter-layout,
body.ps-page #psSearchForm > .rr-search-grid.rr-filter-layout {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0.22rem !important;
  align-items: stretch !important;
}

@media (min-width: 621px) {
  body.rr-page:not(.ps-page) .rr-filter-layout--show .rr-filter-row--primary {
    grid-template-columns:
      minmax(4.4rem, 0.58fr)
      minmax(13rem, 1.9fr)
      minmax(6.8rem, 0.96fr)
      minmax(6.6rem, 0.92fr)
      minmax(6.3rem, 0.88fr) !important;
  }

  body.rr-page:not(.ps-page) .rr-filter-layout--show .rr-filter-row--secondary,
  body.ps-page .rr-filter-layout--points .rr-filter-row--secondary {
    grid-template-columns: minmax(10rem, 1fr) minmax(10rem, 1fr) minmax(3.7rem, auto) !important;
  }

  body.ps-page .rr-filter-layout--points .rr-filter-row--primary {
    grid-template-columns: minmax(4.4rem, 0.42fr) minmax(14rem, 1.58fr) !important;
  }
}

body.rr-page:not(.ps-page) #rrSearchForm .rr-filter-row .rr-search-actions,
body.ps-page #psSearchForm .rr-filter-row .rr-search-actions {
  min-width: max-content;
}


/* Final Point Scores-only heading/alignment refinements. */


/* Shared compact two-row filters for Show Results and Point Scores reports. */
body.rr-page #rrSearchForm > .rr-filter-layout,
body.ps-page #psSearchForm > .rr-filter-layout {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0.22rem !important;
  align-items: stretch !important;
}

body.rr-page .rr-filter-row {
  display: grid;
  gap: 0.18rem 0.28rem;
  align-items: end;
  width: 100%;
  min-width: 0;
}

body.rr-page .rr-filter-layout--show .rr-filter-row--primary {
  grid-template-columns:
    minmax(4.4rem, 0.58fr)
    minmax(13rem, 1.9fr)
    minmax(6.8rem, 0.96fr)
    minmax(6.6rem, 0.92fr)
    minmax(6.3rem, 0.88fr);
}

body.rr-page .rr-filter-layout--show .rr-filter-row--secondary {
  grid-template-columns: minmax(10rem, 1fr) minmax(10rem, 1fr) auto;
}

body.ps-page .rr-filter-layout--points .rr-filter-row--primary {
  grid-template-columns: minmax(4.4rem, 0.42fr) minmax(14rem, 1.58fr);
}

body.ps-page .rr-filter-layout--points .rr-filter-row--secondary {
  grid-template-columns: minmax(10rem, 1fr) minmax(10rem, 1fr) auto;
}

body.rr-page #rrSearchForm .rr-filter-row .rr-filter,
body.rr-page #rrSearchForm .rr-filter-row .rr-filter-action-row,
body.ps-page #psSearchForm .rr-filter-row .rr-filter,
body.ps-page #psSearchForm .rr-filter-row .rr-search-actions {
  grid-column: auto !important;
  min-width: 0 !important;
}

body.rr-page #rrSearchForm .rr-filter-row .rr-filter,
body.ps-page #psSearchForm .rr-filter-row .rr-filter {
  gap: 0.1rem !important;
}

body.rr-page #rrSearchForm .rr-filter-row .rr-filter > span,
body.ps-page #psSearchForm .rr-filter-row .rr-filter > span {
  margin-bottom: 0.02rem !important;
  color: #214c70 !important;
  font-size: 0.6rem !important;
  line-height: 1 !important;
  letter-spacing: 0.025em !important;
  text-align: left !important;
}

body.rr-page #rrSearchForm .rr-filter-row .rr-filter select,
body.rr-page #rrSearchForm .rr-filter-row .rr-filter input,
body.ps-page #psSearchForm .rr-filter-row .rr-filter select,
body.ps-page #psSearchForm .rr-filter-row .rr-filter input,
body.rr-page #rrSearchForm .rr-filter-row .rr-search-actions button,
body.ps-page #psSearchForm .rr-filter-row .rr-search-actions button {
  min-height: 1.84rem !important;
  height: 1.84rem !important;
  padding: 0.18rem 0.32rem !important;
  border-radius: 0 !important;
  font-size: 0.76rem !important;
  line-height: 1.1 !important;
}

body.rr-page #rrSearchForm.rr-search-form--auto-submit .rr-search-actions__apply,
body.ps-page #psSearchForm.rr-search-form--auto-submit .rr-search-actions__apply {
  display: none !important;
}

body.rr-page #rrSearchForm .rr-filter-row .rr-filter-action-row,
body.ps-page #psSearchForm .rr-filter-row .rr-search-actions {
  align-self: end;
}

body.rr-page #rrSearchForm .rr-filter-row .rr-search-actions,
body.ps-page #psSearchForm .rr-filter-row .rr-search-actions {
  display: flex;
  gap: 0.18rem;
  align-items: end;
  justify-content: flex-end;
  width: auto;
  margin-left: 0;
}

body.rr-page #rrSearchForm .rr-filter-row .rr-search-actions button,
body.ps-page #psSearchForm .rr-filter-row .rr-search-actions button {
  min-width: 3.7rem;
  box-shadow: none;
}

body.rr-page #rrSearchForm .rr-filter-row .rr-load-message {
  min-height: 1.84rem;
  font-size: 0.74rem;
  line-height: 1.1;
}

body.rr-page #rrSearchForm .rr-filter-row .rr-load-message:not([hidden]) {
  display: flex;
}

body.rr-page #rrSearchForm .rr-filter-action-row:has(.rr-load-message:not([hidden])) {
  grid-column: 1 / -1 !important;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.3rem;
  align-items: end;
}

@media (max-width: 620px) {
  body.rr-page #rrSearchForm > .rr-filter-layout,
  body.ps-page #psSearchForm > .rr-filter-layout {
    gap: 0.28rem !important;
  }

  body.rr-page .rr-filter-row,
  body.rr-page .rr-filter-layout--show .rr-filter-row--primary,
  body.rr-page .rr-filter-layout--show .rr-filter-row--secondary,
  body.ps-page .rr-filter-layout--points .rr-filter-row--primary,
  body.ps-page .rr-filter-layout--points .rr-filter-row--secondary {
    grid-template-columns: 1fr !important;
  }

  body.rr-page #rrSearchForm .rr-filter-row .rr-filter > span,
  body.ps-page #psSearchForm .rr-filter-row .rr-filter > span {
    font-size: 0.7rem !important;
  }

  

  body.rr-page #rrSearchForm .rr-filter-row .rr-filter-action-row,
  body.rr-page #rrSearchForm .rr-filter-action-row:has(.rr-load-message:not([hidden])) {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 0.32rem;
  }

  body.rr-page #rrSearchForm .rr-filter-row .rr-search-actions,
  body.ps-page #psSearchForm .rr-filter-row .rr-search-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  body.rr-page #rrSearchForm .rr-filter-row .rr-search-actions button,
  body.ps-page #psSearchForm .rr-filter-row .rr-search-actions button {
    width: 100%;
  }
}

/* Point Scores journal ledger refinement. Keeps point-score values in their own cell. */
body.ps-page {
  --rr-report-width: 780px;
  --rr-detail-width: 650px;
  --ps-ledger-tone: var(--rr-navy-1);
  --ps-ledger-line: rgba(10, 43, 74, 0.38);
  --ps-ledger-line-soft: rgba(68, 78, 90, 0.22);
}

body.ps-page .rr-tone-special {
  --ps-ledger-tone: #0b5f9e;
  --ps-ledger-line: rgba(11, 95, 158, 0.5);
  --ps-ledger-line-soft: rgba(11, 95, 158, 0.22);
}

body.ps-page .rr-tone-junior {
  --ps-ledger-tone: #8a5100;
  --ps-ledger-line: rgba(138, 81, 0, 0.5);
  --ps-ledger-line-soft: rgba(138, 81, 0, 0.23);
}

body.ps-page .rr-tone-group {
  --ps-ledger-tone: #237346;
  --ps-ledger-line: rgba(35, 115, 70, 0.5);
  --ps-ledger-line-soft: rgba(35, 115, 70, 0.23);
}

body.ps-page .rr-tone-breed {
  --ps-ledger-tone: #9d4050;
  --ps-ledger-line: rgba(157, 64, 80, 0.5);
  --ps-ledger-line-soft: rgba(157, 64, 80, 0.23);
}

body.ps-page .rr-tone-class {
  --ps-ledger-tone: #5f348f;
  --ps-ledger-line: rgba(95, 52, 143, 0.5);
  --ps-ledger-line-soft: rgba(95, 52, 143, 0.23);
}

body.ps-page .rr-tone-ccca {
  --ps-ledger-tone: #00707a;
  --ps-ledger-line: rgba(0, 112, 122, 0.52);
  --ps-ledger-line-soft: rgba(0, 112, 122, 0.23);
}

body.ps-page .rr-tone-prefix {
  --ps-ledger-tone: #117463;
  --ps-ledger-line: rgba(17, 116, 99, 0.5);
  --ps-ledger-line-soft: rgba(17, 116, 99, 0.23);
}


body.ps-page .rr-search-panel.rr-search-card {
  margin: 0.45rem auto 0.32rem !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.ps-page .rr-filter-panel-head {
  display: none !important;
}

body.ps-page .ps-last-updated {
  margin: 0 0 0.16rem;
  padding: 0;
  color: var(--rr-muted);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: left;
}

body.ps-page #psSearchForm.rr-search-form {
  padding: 0 !important;
}

body.ps-page #psSearchForm > .rr-search-grid {
  grid-template-columns:
    minmax(4.6rem, 0.7fr)
    minmax(8.5rem, 1.4fr)
    minmax(7rem, 1fr)
    minmax(7.8rem, 1fr)
    auto !important;
  gap: 0.2rem 0.28rem !important;
  align-items: end !important;
}

body.ps-page #psSearchForm .rr-filter,
body.ps-page #psSearchForm .rr-search-actions {
  grid-column: auto !important;
}

@media (min-width: 621px) {
  
}

body.ps-page #psSearchForm .rr-filter > span {
  margin-bottom: 0.04rem;
  color: #214c70;
  font-size: 0.62rem !important;
  line-height: 1;
  letter-spacing: 0.025em !important;
}

body.ps-page #psSearchForm .rr-filter select,
body.ps-page #psSearchForm .rr-filter input,
body.ps-page #psSearchForm .rr-search-actions button {
  min-height: 1.9rem !important;
  height: 1.9rem !important;
  border-radius: 0 !important;
  font-size: 0.78rem !important;
  line-height: 1.1;
}

body.ps-page #psSearchForm .rr-filter select,
body.ps-page #psSearchForm .rr-filter input {
  padding: 0.2rem 0.34rem !important;
}

body.ps-page #psSearchForm .rr-search-actions {
  gap: 0.2rem;
  align-items: end;
  align-self: end;
}

body.ps-page #psSearchForm .rr-search-actions button {
  min-width: 3.85rem;
  padding: 0.18rem 0.48rem;
  box-shadow: none;
}

body.ps-page .rr-main {
  margin: 0.45rem auto 0.75rem !important;
}

body.ps-page .pr-card,
body.ps-page .pr-card-points,
body.ps-page .rr-results-shell,
body.ps-page .rr-results-card {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.ps-page .pr-card-points {
  padding: 0 !important;
}

body.ps-page .pr-card-points::before {
  display: none !important;
}

body.ps-page .ps-board-points,
body.ps-page .ps-type-group,
body.ps-page .ps-leader-head,
body.ps-page .ps-board-points .ps-leader-row {
  width: min(var(--rr-detail-width), 100%);
  max-width: 100%;
}

body.ps-page .ps-board-points,
body.ps-page .ps-type-group {
  display: grid;
  justify-items: stretch;
  gap: 0;
}

body.ps-page .ps-type-group {
  margin: 0.52rem 0 0.18rem;
}

body.ps-page .ps-type-heading,
body.ps-page .ps-group-heading,
body.ps-page .ps-breed-heading {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  width: 100%;
  margin: 0.42rem 0 0.16rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ps-ledger-tone);
  font-weight: 700;
  line-height: 1.12;
  text-align: left;
}

body.ps-page .ps-type-heading {
  font-size: 0.88rem;
}

body.ps-page .ps-group-heading,
body.ps-page .ps-breed-heading {
  font-size: 0.8rem;
}

body.ps-page .ps-type-heading::after,
body.ps-page .ps-group-heading::after,
body.ps-page .ps-breed-heading::after {
  content: "";
  flex: 1 1 auto;
  border-top: 2px solid var(--ps-ledger-line);
}

body.ps-page .ps-leader-head,
body.ps-page .ps-board-points .ps-leader-row {
  display: grid;
  grid-template-columns: 4.2rem minmax(13rem, 1.7fr) minmax(10rem, 1.2fr) 5rem;
  gap: 0;
  border: 0 !important;
  border-bottom: 1px solid var(--ps-ledger-line-soft) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.ps-page .ps-leader-head {
  color: var(--ps-ledger-tone);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

body.ps-page .ps-board-points .ps-leader-row {
  min-height: 0;
  padding: 0.2rem 0;
  color: var(--rr-text);
  font-size: 0.84rem;
  line-height: 1.18;
}

body.ps-page .ps-leader-head > div,
body.ps-page .ps-board-points .ps-leader-row > div {
  min-width: 0;
  padding: 0.08rem 0.28rem !important;
  border: 0 !important;
  text-align: left;
}

body.ps-page .ps-leader-head > div:first-child,
body.ps-page .ps-board-points .ps-leader-row > div:first-child {
  padding-left: 0 !important;
}

body.ps-page .ps-leader-head > div:last-child,
body.ps-page .ps-board-points .ps-leader-row > div:last-child {
  padding-right: 0 !important;
}

body.ps-page .ps-rank {
  color: var(--rr-muted);
  font-weight: 700;
  text-align: center;
}

body.ps-page .ps-cat-name {
  display: block;
  color: var(--rr-text);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-align: left;
}

body.ps-page .ps-exh-name {
  color: var(--rr-muted);
  overflow-wrap: anywhere;
}

body.ps-page .ps-points {
  color: var(--rr-navy-1);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

body.ps-page .ps-points strong {
  color: inherit;
}

body.ps-page .ps-pager {
  margin-top: 0.65rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(88, 117, 147, 0.22);
}

@media (max-width: 900px) {
  body.ps-page #psSearchForm > .rr-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.28rem 0.38rem !important;
  }

  body.ps-page #psSearchForm .rr-filter--award,
  body.ps-page #psSearchForm .rr-filter--cat,
  body.ps-page #psSearchForm .rr-filter--owner,
  body.ps-page #psSearchForm .ps-filter--exhibitor,
  body.ps-page #psSearchForm .rr-search-actions {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 520px) {
  

  body.ps-page #psSearchForm > .rr-search-grid {
    grid-template-columns: 1fr !important;
    gap: 0.24rem !important;
  }

  body.ps-page #psSearchForm .rr-search-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  body.ps-page #psSearchForm .rr-search-actions button {
    width: 100%;
  }

  body.ps-page .ps-type-heading,
  body.ps-page .ps-group-heading,
  body.ps-page .ps-breed-heading {
    white-space: normal;
  }

  body.ps-page .ps-leader-head {
    display: none;
  }

  body.ps-page .ps-board-points .ps-leader-row {
    grid-template-columns: minmax(0, 1fr);
    padding: 0.28rem 0;
  }

  body.ps-page .ps-board-points .ps-leader-row > div {
    display: grid;
    grid-template-columns: 6.7rem minmax(0, 1fr);
    gap: 0.34rem;
    padding: 0.05rem 0 !important;
  }

  body.ps-page .ps-cell-label {
    display: inline;
    color: var(--rr-muted);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.18;
  }

  body.ps-page .ps-points {
    text-align: left;
  }
}

@media (min-width: 621px) {
  body.ps-page #psSearchForm > .rr-search-grid {
    grid-template-columns:
      minmax(4.6rem, 0.7fr)
      minmax(8.5rem, 1.4fr)
      minmax(7rem, 1fr)
      minmax(7.8rem, 1fr)
      auto !important;
    gap: 0.2rem 0.28rem !important;
    align-items: end !important;
  }

  body.ps-page #psSearchForm .rr-filter--year,
  body.ps-page #psSearchForm .rr-filter--award,
  body.ps-page #psSearchForm .ps-filter--award,
  body.ps-page #psSearchForm .rr-filter--cat,
  body.ps-page #psSearchForm .rr-filter--owner,
  body.ps-page #psSearchForm .ps-filter--exhibitor,
  body.ps-page #psSearchForm .rr-search-actions {
    grid-column: auto !important;
  }
}

/* Final Point Scores-only heading/alignment refinements. */
body.ps-page .ps-type-heading,
body.ps-page .ps-group-heading,
body.ps-page .ps-breed-heading {
  justify-content: center !important;
  gap: 0 !important;
  font-size: 1rem !important;
  text-align: center !important;
}

body.ps-page .ps-type-heading::after,
body.ps-page .ps-group-heading::after,
body.ps-page .ps-breed-heading::after {
  display: none !important;
}

body.ps-page .ps-rank,
body.ps-page .ps-rank .ps-cell-value {
  text-align: center !important;
}

body.ps-page .ps-cat-wrap,
body.ps-page .ps-cat-name {
  text-align: left !important;
}
/* Final Point Scores compact card-per-section treatment. */
body.ps-page .ps-section-card {
  width: min(var(--rr-detail-width), 100%);
  max-width: 100%;
  margin: 0.26rem auto 0.34rem;
  padding: 0.14rem 0.42rem 0.18rem;
  border: 1px solid var(--ps-ledger-line-soft);
  border-left: 3px solid var(--ps-ledger-line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 1px 2px rgba(10, 43, 74, 0.05);
}

body.ps-page .ps-section-card .ps-type-heading,
body.ps-page .ps-section-card .ps-group-heading,
body.ps-page .ps-section-card .ps-breed-heading {
  margin: 0 0 0.12rem;
  padding: 0.02rem 0 0.12rem;
  border-bottom: 1px solid var(--ps-ledger-line-soft);
}

body.ps-page .ps-section-card .ps-leader-head,
body.ps-page .ps-section-card .ps-leader-row {
  width: 100%;
}

body.ps-page .ps-section-card .ps-leader-head {
  border-bottom-color: var(--ps-ledger-line-soft) !important;
}

body.ps-page .ps-section-card .ps-leader-row {
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  border-bottom-color: rgba(68, 78, 90, 0.16) !important;
}

@media (max-width: 520px) {
  body.ps-page .ps-section-card {
    width: 100%;
    padding: 0.14rem 0.34rem 0.18rem;
  }
}

/* 2026-08-16 screenshot-led mobile filter refinement. */
@media (max-width: 620px) {
  body.rr-page .rr-search-panel.rr-search-card,
  body.ps-page .rr-search-panel.rr-search-card {
    padding: 0.45rem 0.5rem !important;
  }

  body.rr-page .rr-filter-row,
  body.rr-page .rr-filter-layout--show .rr-filter-row--primary,
  body.rr-page .rr-filter-layout--show .rr-filter-row--secondary,
  body.ps-page .rr-filter-layout--points .rr-filter-row--primary,
  body.ps-page .rr-filter-layout--points .rr-filter-row--secondary {
    gap: 0.25rem !important;
  }

  body.rr-page #rrSearchForm .rr-filter-row .rr-filter > span,
  body.ps-page #psSearchForm .rr-filter-row .rr-filter > span {
    margin-bottom: 0.12rem;
    font-size: 0.68rem;
  }

  body.rr-page #rrSearchForm .rr-filter-row .rr-filter select,
  body.rr-page #rrSearchForm .rr-filter-row .rr-filter input,
  body.ps-page #psSearchForm .rr-filter-row .rr-filter select,
  body.ps-page #psSearchForm .rr-filter-row .rr-filter input,
  body.rr-page #rrSearchForm .rr-filter-row .rr-search-actions button,
  body.ps-page #psSearchForm .rr-filter-row .rr-search-actions button {
    height: 2.2rem !important;
    min-height: 2.2rem !important;
    font-size: 0.8rem !important;
  }

  body.rr-page #rrSearchForm .rr-filter-row .rr-search-actions,
  body.ps-page #psSearchForm .rr-filter-row .rr-search-actions {
    gap: 0.35rem;
    margin-top: 0.15rem;
  }
}

/* Final Point Scores filter balance and two-row field placement. */
body.ps-page {
  background: transparent !important;
  background-image: none !important;
}

body.ps-page .rr-search-panel.rr-search-card,
body.ps-page #psSearchForm,
body.ps-page #psSearchForm > .rr-filter-layout,
body.ps-page #psSearchForm .rr-filter-row {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

body.ps-page #psSearchForm .rr-filter select,
body.ps-page #psSearchForm .rr-filter input,
body.ps-page #psSearchForm .rr-search-actions button {
  background: #ffffff !important;
  background-image: none !important;
  box-shadow: none !important;
}

body.ps-page #psSearchForm > .rr-search-grid.rr-filter-layout--points {
  grid-template-areas:
    "year cat actions"
    "award exhibitor actions" !important;
  grid-template-columns: 9rem minmax(0, 1fr) max-content !important;
  gap: 0.28rem 0.45rem !important;
  align-items: end !important;
}

body.ps-page .rr-filter-layout--points .rr-filter-row {
  display: contents !important;
}

body.ps-page #psSearchForm .rr-filter--year {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

body.ps-page #psSearchForm .rr-filter--award {
  grid-column: 1 !important;
  grid-row: 2 !important;
}

body.ps-page #psSearchForm .rr-filter--cat {
  grid-column: 2 !important;
  grid-row: 1 !important;
}

body.ps-page #psSearchForm .ps-filter--exhibitor {
  grid-column: 2 !important;
  grid-row: 2 !important;
}

body.ps-page #psSearchForm .rr-search-actions {
  grid-column: 3 !important;
  grid-row: 1 / span 2 !important;
  align-self: end;
  margin: 0 !important;
}

body.ps-page .ps-leader-row + .ps-type-heading,
body.ps-page .ps-leader-row + .ps-group-heading,
body.ps-page .ps-leader-row + .ps-breed-heading {
  margin-top: 0.85rem !important;
}

body.ps-page .ps-type-group + .ps-type-group {
  margin-top: 0.85rem;
}

@media (max-width: 620px) {
  body.ps-page #psSearchForm > .rr-search-grid.rr-filter-layout--points {
    grid-template-areas:
      "year"
      "award"
      "cat"
      "exhibitor"
      "actions" !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.ps-page #psSearchForm .rr-filter--year,
  body.ps-page #psSearchForm .rr-filter--award,
  body.ps-page #psSearchForm .rr-filter--cat,
  body.ps-page #psSearchForm .ps-filter--exhibitor,
  body.ps-page #psSearchForm .rr-search-actions {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
}

/* Final Point Scores wide ledger alignment. */
body.ps-page {
  --rr-report-width: 940px;
  --rr-detail-width: 940px;
}

body.ps-page .rr-search-panel.rr-search-card,
body.ps-page .rr-main {
  width: min(940px, calc(100% - 1.25rem)) !important;
  max-width: 940px !important;
}

body.ps-page #psSearchForm,
body.ps-page .rr-main {
  padding-right: 0.7rem !important;
  padding-left: 0.7rem !important;
}

body.ps-page .ps-leader-head,
body.ps-page .ps-board-points .ps-leader-row {
  grid-template-columns: 3.25rem minmax(18rem, 1.65fr) minmax(16rem, 1.35fr) 6rem !important;
}

body.ps-page .ps-leader-head > div:first-child,
body.ps-page .ps-rank,
body.ps-page .ps-rank .ps-cell-value {
  text-align: left !important;
}

body.ps-page .ps-leader-head > div:last-child,
body.ps-page .ps-points,
body.ps-page .ps-points .ps-cell-value,
body.ps-page .ps-points strong {
  text-align: right !important;
}

body.ps-page .ps-leader-head > div:nth-child(2),
body.ps-page .ps-leader-head > div:nth-child(3),
body.ps-page .ps-cat-wrap,
body.ps-page .ps-cat-name,
body.ps-page .ps-exh-name,
body.ps-page .ps-exh-name .ps-cell-value {
  text-align: center !important;
}

body.ps-page .ps-prize-card {
  width: 100%;
  margin: 0.35rem 0 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(68, 78, 90, 0.3);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(10, 43, 74, 0.08);
}

body.ps-page .ps-prize-card__header {
  padding: 0.45rem 0.7rem;
  border-bottom: 1px solid rgba(68, 78, 90, 0.24);
  background: #f2f5f8;
}

body.ps-page .ps-prize-card__header .ps-type-heading,
body.ps-page .ps-prize-card__header .ps-group-heading {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.ps-page .ps-prize-card__body {
  padding: 0.25rem 0.7rem 0.45rem;
}

body.ps-page .ps-prize-card__body > .ps-leader-row:nth-of-type(odd) {
  background: #ffffff !important;
}

body.ps-page .ps-prize-card__body > .ps-leader-row:nth-of-type(even) {
  background: #e2e6ea !important;
}

body.ps-page .ps-prize-card__body > .ps-leader-row {
  padding-right: 0.35rem;
  padding-left: 0.35rem;
}

body.ps-page .ps-prize-card__header:has(.rr-tone-group),
body.ps-page .ps-prize-card__header:has(.rr-tone-prefix) {
  border-bottom-color: rgba(35, 115, 70, 0.38);
  background: linear-gradient(180deg, rgba(35, 115, 70, 0.05), rgba(35, 115, 70, 0.22));
}

body.ps-page .ps-prize-card__header:has(.rr-tone-breed) {
  border-bottom-color: rgba(157, 64, 80, 0.38);
  background: linear-gradient(180deg, rgba(157, 64, 80, 0.05), rgba(157, 64, 80, 0.22));
}

body.ps-page .ps-prize-card__header:has(.rr-tone-junior) {
  border-bottom-color: rgba(138, 81, 0, 0.36);
  background: linear-gradient(180deg, rgba(138, 81, 0, 0.05), rgba(138, 81, 0, 0.19));
}

body.ps-page .ps-prize-card__header:has(.rr-tone-special) {
  border-bottom-color: rgba(11, 95, 158, 0.34);
  background: linear-gradient(180deg, rgba(11, 95, 158, 0.05), rgba(11, 95, 158, 0.19));
}

body.ps-page .ps-prize-card__header:has(.rr-tone-class) {
  border-bottom-color: rgba(95, 52, 143, 0.34);
  background: linear-gradient(180deg, rgba(95, 52, 143, 0.05), rgba(95, 52, 143, 0.19));
}

body.ps-page .ps-prize-card__header:has(.rr-tone-ccca) {
  border-bottom-color: rgba(0, 112, 122, 0.34);
  background: linear-gradient(180deg, rgba(0, 112, 122, 0.05), rgba(0, 112, 122, 0.19));
}

body.ps-page .rr-search-panel.rr-search-card {
  width: min(calc(940px - 1.4rem), calc(100% - 2.65rem)) !important;
  max-width: calc(940px - 1.4rem) !important;
  padding: 0.7rem !important;
  border: 1px solid rgba(68, 78, 90, 0.3) !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  box-shadow: 0 1px 3px rgba(10, 43, 74, 0.08) !important;
}

body.ps-page .rr-search-panel.rr-search-card #psSearchForm {
  padding: 0 !important;
}

body.ps-page .ps-report-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 0.8rem;
  margin-top: 0.35rem;
  font-size: 0.8rem;
}

body.ps-page .ps-report-links a {
  color: var(--rr-navy-1);
  font-weight: 700;
  text-underline-offset: 0.16em;
}

body.rr-page:not(.ps-page) .rr-report-intro {
  margin-bottom: 0.55rem;
  text-align: center;
}

body.rr-page:not(.ps-page) .rr-report-intro h1 {
  margin: 0;
  color: var(--rr-navy-1);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  line-height: 1.1;
}

body.rr-page:not(.ps-page) .rr-report-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 0.8rem;
  margin-top: 0.35rem;
  font-size: 0.8rem;
}

body.rr-page:not(.ps-page) .rr-report-links a {
  color: var(--rr-navy-1);
  font-weight: 700;
  text-underline-offset: 0.16em;
}

/* Point Scores mobile ledger: retain all four columns and use the full viewport. */
@media (max-width: 520px) {
  body.ps-page .rr-search-panel.rr-search-card,
  body.ps-page .rr-main {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.ps-page .rr-main {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  body.ps-page .rr-search-panel.rr-search-card {
    width: calc(100% - 0.5rem) !important;
  }

  body.ps-page .ps-prize-card__body {
    padding-right: 0.2rem;
    padding-left: 0.2rem;
  }

  body.ps-page .ps-prize-card__body > .ps-leader-row {
    padding-right: 0.2rem;
    padding-left: 0.2rem;
  }

  body.ps-page .ps-board-points .ps-leader-row {
    display: grid;
    grid-template-columns: 1.7rem minmax(0, 1.35fr) minmax(0, 1fr) 3.7rem !important;
    gap: 0.2rem;
    align-items: center;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  body.ps-page .ps-board-points .ps-leader-row > div {
    display: block !important;
    min-width: 0;
    padding: 0 !important;
    font-size: 0.7rem;
    line-height: 1.18;
  }

  body.ps-page .ps-cell-label {
    display: none !important;
  }

  body.ps-page .ps-rank,
  body.ps-page .ps-rank .ps-cell-value {
    text-align: left !important;
  }

  body.ps-page .ps-cat-wrap,
  body.ps-page .ps-cat-name,
  body.ps-page .ps-exh-name,
  body.ps-page .ps-exh-name .ps-cell-value {
    overflow-wrap: anywhere;
    text-align: center !important;
  }

  body.ps-page .ps-points,
  body.ps-page .ps-points .ps-cell-value,
  body.ps-page .ps-points strong {
    white-space: nowrap;
    text-align: right !important;
  }
}

/* Phone landscape keeps the complete ledger inside a 720px presentation. */
@media (min-width: 521px) and (max-width: 750px) {
  body.ps-page .rr-search-panel.rr-search-card,
  body.ps-page .rr-main {
    width: min(100% - 0.75rem, 720px) !important;
    max-width: 720px !important;
  }

  body.ps-page .ps-leader-head,
  body.ps-page .ps-board-points .ps-leader-row {
    grid-template-columns: 2.5rem minmax(0, 1.4fr) minmax(0, 1fr) 4.5rem !important;
    gap: 0.35rem;
  }

  body.ps-page .ps-prize-card__body > .ps-leader-row {
    padding-right: 0.35rem;
    padding-left: 0.35rem;
  }

  body.ps-page .ps-cell-label {
    display: none !important;
  }

  body.ps-page .ps-points,
  body.ps-page .ps-points .ps-cell-value,
  body.ps-page .ps-points strong {
    white-space: nowrap;
    text-align: right !important;
  }
}

/* Show Results transparent canvas and Point Scores-style grouped cards. */
html:has(body.rr-page:not(.ps-page)),
body.rr-page:not(.ps-page) {
  background: transparent !important;
  background-image: none !important;
}

body.rr-page:not(.ps-page) .rr-main {
  padding-right: 0.7rem !important;
  padding-left: 0.7rem !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.rr-page:not(.ps-page) .rr-results-shell,
body.rr-page:not(.ps-page) .rr-results-shell > .pr-card__body {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.rr-page:not(.ps-page) .rr-search-panel.rr-search-card,
body.rr-page:not(.ps-page) .rr-award-card {
  overflow: hidden;
  border: 1px solid rgba(68, 78, 90, 0.3) !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  box-shadow: 0 1px 3px rgba(10, 43, 74, 0.08) !important;
}

body.rr-page:not(.ps-page) .rr-search-panel.rr-search-card {
  padding: 0.7rem !important;
}

body.rr-page:not(.ps-page) .rr-filter-layout--show .rr-filter-row--primary {
  grid-template-columns:
    minmax(4.4rem, 0.58fr)
    minmax(15rem, 2.2fr)
    minmax(7rem, 1fr)
    minmax(7rem, 1fr) !important;
}

body.rr-page:not(.ps-page) .rr-filter-layout--show .rr-filter-row--secondary {
  grid-template-columns:
    minmax(9rem, 1fr)
    minmax(9rem, 1fr)
    minmax(7rem, 0.75fr)
    auto !important;
}

body.rr-page:not(.ps-page) #rrSearchForm.rr-search-form--auto-submit .rr-search-actions__apply {
  display: inline-flex !important;
}

body.rr-page:not(.ps-page) #rrSearchForm .rr-search-actions--primary,
body.rr-page:not(.ps-page) #rrSearchForm .rr-filter-action-row {
  align-self: end;
}

body.rr-page:not(.ps-page) #rrSearchForm .rr-search-actions button {
  min-width: 4.8rem !important;
}

body.rr-page:not(.ps-page) #rrSearchForm .rr-search-actions__apply[aria-busy="true"] {
  cursor: wait;
  opacity: 0.78;
}

body.rr-page:not(.ps-page) .rr-show-title-row,
body.rr-page:not(.ps-page) .rr-all-show-break.rr-show-title-row {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  margin: 0.55rem 0 0.7rem !important;
  padding: 0.48rem 3rem !important;
  border: 1px solid rgba(68, 78, 90, 0.3) !important;
  border-radius: 6px !important;
  background: linear-gradient(180deg, rgba(11, 95, 158, 0.04), rgba(11, 95, 158, 0.16)) !important;
  box-shadow: 0 1px 3px rgba(10, 43, 74, 0.08) !important;
}

body.rr-page:not(.ps-page) .rr-show-title-row .rr-show-title {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  text-align: center !important;
}

body.rr-page:not(.ps-page) .rr-show-title-row .rr-show-title::before,
body.rr-page:not(.ps-page) .rr-show-title-row .rr-show-title::after {
  display: none !important;
}

body.rr-page:not(.ps-page) .rr-show-title-row .rr-show-nav-controls {
  position: absolute;
  top: 50%;
  right: 0.48rem;
  display: flex;
  gap: 0.18rem;
  transform: translateY(-50%);
}

body.rr-page:not(.ps-page) .rr-type {
  display: block !important;
  margin: 0.3rem 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.rr-page:not(.ps-page) .rr-type-title {
  display: block !important;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  font-size: 1.08rem !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

body.rr-page:not(.ps-page) .rr-type-title::before,
body.rr-page:not(.ps-page) .rr-type-title::after {
  display: none !important;
}

body.rr-page:not(.ps-page) .rr-line1-detail {
  display: inline;
  color: #4f5963 !important;
}

@media (min-width: 521px) {
  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-copy {
    grid-template-columns: 5rem minmax(0, 1fr) !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-label {
    white-space: nowrap;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-award-head {
    position: relative;
    justify-content: flex-start !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-prize {
    width: 100%;
    padding-right: 5.5rem;
    padding-left: 0;
    text-align: left !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-prize-points {
    position: absolute;
    right: 0.45rem;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line1-text,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2 {
    text-align: left !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-label {
    text-align: left !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-cage-detail {
	text-align: left !important;
	font-size: 12pt;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-copy:has(.rr-ring-label:empty) .rr-ring-cage-detail {
    grid-row: 1 !important;
    align-self: center;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-prize,
  body.rr-page:not(.ps-page) .rr-award-card .rr-prize-points {
    font-size: 20px !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1-name {
    display: inline;
    font-size: 22px !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1-detail {
    display: inline;
    margin-left: 0;
    font-size: 20px !important;
    font-weight: 400 !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-meta,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-owner,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-breeder,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-judge {
    font-size: 15pt !important;
  }
}

body.rr-page:not(.ps-page) .rr-line1-cage-mobile {
  display: none;
}

body.rr-page:not(.ps-page) .rr-line2-points-mobile {
  display: none;
}

body.rr-page:not(.ps-page) .rr-line2-cage-mobile {
  display: none;
}

body.rr-page:not(.ps-page) .rr-cage-label-mobile {
  display: none;
}

body.rr-page:not(.ps-page) .rr-ring-cage-detail {
  display: inline;
}

@media (max-width: 520px) {
  body.rr-page:not(.ps-page) .rr-award-card--points-in-head .rr-prize-points {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    margin-left: auto;
    font-size: 0.9rem;
    line-height: 1.1;
    white-space: nowrap;
  }

  body.rr-page:not(.ps-page) .rr-award-card.rr-tone-special .rr-entry-copy:has(.rr-ring-label:empty) .rr-ring-cage-detail {
    align-self: start;
    box-sizing: border-box;
    font-size: 12px !important;
    line-height: normal;
    margin-top: 0;
    padding: 5px 4px 0;
  }

  body.rr-page:not(.ps-page) .rr-award-card--points-in-head .rr-entry-cell-points {
    display: none !important;
  }

  body.rr-page:not(.ps-page) .rr-filter-layout--show .rr-filter-row--primary,
  body.rr-page:not(.ps-page) .rr-filter-layout--show .rr-filter-row--secondary {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 0.3rem 0.35rem !important;
  }

  body.rr-page:not(.ps-page) #rrSearchForm .rr-filter-row .rr-filter,
  body.rr-page:not(.ps-page) #rrSearchForm .rr-filter-row .rr-filter-action-row,
  body.rr-page:not(.ps-page) #rrSearchForm .rr-filter-row .rr-search-actions {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.rr-page:not(.ps-page) #rrSearchForm .rr-search-actions--primary {
    grid-column: 2 !important;
    justify-self: end;
  }

  body.rr-page:not(.ps-page) #rrSearchForm .rr-search-actions--primary button,
  body.rr-page:not(.ps-page) #rrSearchForm .rr-filter-action-row .rr-search-actions button {
    width: 100% !important;
  }

  body.rr-page:not(.ps-page) #rrSearchForm .rr-filter-action-row {
    grid-column: auto !important;
  }
}

body.rr-page:not(.ps-page) .rr-award-card {
  margin: 0.3rem 0 !important;
  padding: 0 0 0.2rem !important;
}

body.rr-page:not(.ps-page) .rr-award-head {
  padding: 0.42rem 0.7rem !important;
  border-bottom: 1px solid rgba(68, 78, 90, 0.24) !important;
  background: linear-gradient(180deg, rgba(11, 95, 158, 0.04), rgba(11, 95, 158, 0.16)) !important;
}

body.rr-page:not(.ps-page) .rr-award-card.rr-tone-group .rr-award-head {
  border-bottom-color: rgba(35, 115, 70, 0.38) !important;
  background: linear-gradient(180deg, rgba(35, 115, 70, 0.05), rgba(35, 115, 70, 0.22)) !important;
}

body.rr-page:not(.ps-page) .rr-award-card.rr-tone-breed .rr-award-head {
  border-bottom-color: rgba(157, 64, 80, 0.38) !important;
  background: linear-gradient(180deg, rgba(157, 64, 80, 0.05), rgba(157, 64, 80, 0.22)) !important;
}

body.rr-page:not(.ps-page) .rr-award-card .rr-award-entry,
body.rr-page:not(.ps-page) .rr-award-card .rr-award-entry:nth-of-type(even) {
  margin: 0 0.35rem;
  padding: 0.2rem 0.35rem !important;
  border: 0 !important;
}

body.rr-page:not(.ps-page) .rr-award-card .rr-award-entry + .rr-award-entry {
  margin-top: 0.3rem;
}

body.rr-page:not(.ps-page) .rr-award-card .rr-entry-copy::after {
  content: "";
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: end;
  width: 100%;
  border-bottom: 1px solid rgba(68, 78, 90, 0.28);
  pointer-events: none;
}

body.rr-page:not(.ps-page) .rr-award-card .rr-line1 {
  padding-bottom: 0.1rem;
}

body.rr-page:not(.ps-page) .rr-award-card .rr-line2 {
  padding-top: 0.1rem;
}

body.rr-page:not(.ps-page) .rr-award-card .rr-award-entry:nth-of-type(odd) {
  background: transparent !important;
}

body.rr-page:not(.ps-page) .rr-award-card .rr-award-entry:nth-of-type(even) {
  background: transparent !important;
}

@media (max-width: 520px) {
  html,
  body.rr-page:not(.ps-page) {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.rr-page:not(.ps-page) .rr-main {
    width: min(calc(100vw - 0.75rem), 380px) !important;
    max-width: 380px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  body.rr-page:not(.ps-page) .rr-search-panel.rr-search-card {
    padding: 0.55rem !important;
  }

  body.rr-page:not(.ps-page) .rr-report-intro h1 {
    font-size: 1.5rem !important;
  }

  body.rr-page:not(.ps-page) .rr-report-links {
    font-size: 0.9rem !important;
  }

  body.rr-page:not(.ps-page) #rrSearchForm .rr-filter-row .rr-filter > span {
    font-size: 0.8rem !important;
  }

  body.rr-page:not(.ps-page) #rrSearchForm .rr-filter-row .rr-filter select,
  body.rr-page:not(.ps-page) #rrSearchForm .rr-filter-row .rr-filter input,
  body.rr-page:not(.ps-page) #rrSearchForm .rr-search-actions button {
    font-size: 0.86rem !important;
  }

  body.rr-page:not(.ps-page) .rr-show-title-row .rr-show-title {
    font-size: 1.02rem !important;
  }

  body.rr-page:not(.ps-page) .rr-type-title {
    font-size: 1.18rem !important;
  }

  body.rr-page:not(.ps-page) .rr-prize {
    font-size: 20px !important;
    font-weight: 700 !important;
  }

  body.rr-page:not(.ps-page) .rr-prize.rr-prize--compact {
    font-size: 16px !important;
    line-height: 1.15 !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1,
  body.rr-page:not(.ps-page) .rr-award-card .rr-points {
    font-size: 0.9rem !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-info,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2,
  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-meta {
    font-size: 0.78rem !important;
  }

  body.rr-page:not(.ps-page) .rr-line1-detail {
    display: block;
  }

  body.rr-page:not(.ps-page) .rr-line1-separator {
    display: none;
  }

  body.rr-page:not(.ps-page) .rr-ring-cage-detail {
    display: none;
  }

  body.rr-page:not(.ps-page) .rr-ring-info:has(.rr-ring-label:empty) {
    display: none !important;
  }

  body.rr-page:not(.ps-page) .rr-ring-label:not(:empty)::after {
    content: " -";
  }

  body.rr-page:not(.ps-page) .rr-line1-cage-mobile {
    display: none;
    font-size: inherit;
    font-weight: 400;
  }

  body.rr-page:not(.ps-page) .rr-ring-cage-separator {
    display: inline;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-copy {
    display: grid !important;
    grid-template-columns: 3.2rem minmax(0, 1fr) !important;
    gap: 0.08rem 0.08rem !important;
    text-align: left !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-col,
  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-info {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100%;
    text-align: left !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2 {
    grid-column: 2 !important;
    width: 100%;
    text-align: left !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-info {
    order: 1;
    margin: 0 !important;
    padding: 0.16rem 0 0 !important;
    text-indent: 0 !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-label {
    display: inline-block;
    margin: 0 !important;
    padding: 0 !important;
    text-indent: 0 !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-label--ring-2 {
    transform: none;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1 {
    grid-row: 1 !important;
    order: 2;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line2 {
    grid-row: 2 !important;
    order: 3;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-copy:has(.rr-ring-label:empty) .rr-line1,
  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-copy:has(.rr-ring-label:empty) .rr-line2 {
    grid-column: 1 / -1 !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-cell-copy {
    text-align: left !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1-text,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-owner,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-breeder,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-judge {
    text-align: center !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line2,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-owner,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-breeder,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-judge {
    text-align: left !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-owner,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-breeder {
    display: inline;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-owner {
    margin-right: 0;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-owner:has(+ .rr-line2-breeder)::after {
    content: " | ";
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-judge {
    display: block;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-points-mobile {
    display: none;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-cage-desktop {
    display: none;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-cage-mobile {
    display: none !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-cage-detail {
    display: block;
    grid-column: 1 !important;
    grid-row: 2 !important;
    align-self: start;
    text-align: center !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-cage-separator {
    display: none;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-challenge-icon {
    display: block;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-label {
    color: #111111;
    font-size: 20px !important;
    font-weight: 700;
    white-space: nowrap;
  }

  body.rr-page:not(.ps-page) .rr-award-card.rr-tone-junior .rr-ring-label {
    font-size: 20px !important;
    font-weight: 700 !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-copy {
    grid-template-columns: max-content minmax(0, 1fr) !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-copy:has(.rr-ring-label:empty) .rr-ring-info {
    display: contents !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-copy:has(.rr-ring-label:empty) .rr-ring-label {
    display: none !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-copy:has(.rr-ring-label:empty) .rr-ring-cage-detail {
    grid-row: 1 !important;
    align-self: center;
    color: #222222 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    white-space: nowrap;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-copy:has(.rr-ring-label:empty):has(.rr-ring-cage-detail) .rr-line1,
  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-copy:has(.rr-ring-label:empty):has(.rr-ring-cage-detail) .rr-line2 {
    grid-column: 2 !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-copy:has(.rr-ring-label:empty):has(.rr-ring-cage-detail) {
    grid-template-columns: max-content minmax(0, 1fr) !important;
    column-gap: 0.5rem !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-copy:has(.rr-ring-label:empty):has(.rr-ring-cage-detail) .rr-line1,
  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-copy:has(.rr-ring-label:empty):has(.rr-ring-cage-detail) .rr-line1-text {
    text-align: left !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-head--challenge-icon .rr-entry-cell-points {
    display: none !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-prize-points {
    font-size: 20px !important;
    font-weight: 700 !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-meta-value {
    font-weight: 700;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1-name {
    display: block;
    font-size: 20px !important;
    line-height: 1.12 !important;
    text-align: left !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1-detail {
    display: block;
    margin-left: 0;
    color: #4f5963 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.1 !important;
    text-align: left !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-meta {
    font-size: 16px !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-owner-breeder {
    display: block;
    width: 100%;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-info {
    padding-top: 0 !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-entry-copy {
    grid-template-columns: max-content minmax(0, 1fr) !important;
    column-gap: 0.35rem !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-label {
    display: block;
    font-size: 16px !important;
    line-height: 1.12 !important;
    text-align: left !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-label::after {
    content: none !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-word {
    display: none;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-cage-label-full {
    display: none;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-cage-label-mobile {
    display: none;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-cage-detail,
  body.rr-page:not(.ps-page) .rr-award-card.rr-tone-special .rr-entry-copy:has(.rr-ring-label:empty) .rr-ring-cage-detail {
    font-size: 14px !important;
    line-height: 1.414 !important;
    text-align: left !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1-text,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line1-name,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line1-detail,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-owner-breeder,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-owner,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-breeder,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-judge {
    text-align: left !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1-text {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    width: 100%;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1-name {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1-cage-mobile {
    display: none;
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    font-size: 14px;
    line-height: 1.6;
    text-align: right !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1-detail {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1-detail.rr-detail-split .rr-line1-breed,
  body.rr-page:not(.ps-page) .rr-award-card .rr-line1-detail.rr-detail-split .rr-line1-colour {
    display: block;
    width: 100%;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-cage-detail {
    display: none !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-label[data-tooltip],
  body.rr-page:not(.ps-page) .rr-award-card .rr-line1-cage-mobile[data-tooltip] {
    position: relative;
    cursor: help;
    user-select: none;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-mobile-tooltip-open::after {
    content: attr(data-tooltip);
    position: absolute;
    z-index: 20;
    top: calc(100% + 4px);
    left: 0;
    width: max-content;
    max-width: 12rem;
    padding: 0.25rem 0.4rem;
    border-radius: 0.25rem;
    background: #1f2933;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line1-cage-mobile.rr-mobile-tooltip-open::after {
    right: 0;
    left: auto;
  }
}

/* Keep Ring typography consistent across desktop and mobile. */
body.rr-page:not(.ps-page) .rr-award-card .rr-ring-label {
  color: #4f5963 !important;
}

@media (min-width: 521px) {
  body.rr-page:not(.ps-page) .rr-award-card .rr-line1-separator {
    display: inline !important;
  }

  body.rr-page:not(.ps-page) .rr-award-card .rr-line2-owner-breeder:has(+ .rr-line2-judge)::after {
    content: " | ";
  }
}

body.rr-page:not(.ps-page) #rrSearchForm .rr-search-actions__apply {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

body.rr-page:not(.ps-page) .rr-cat-points-summary {
  display: none !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
  margin: 0.65rem 0.75rem 0.85rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(24, 105, 68, 0.35);
  border-radius: 0.4rem;
  background: linear-gradient(180deg, #f4fbf6 0%, #e8f5ec 100%);
  color: #164f36;
}

body.rr-page:not(.ps-page) .rr-cat-points-summary__name {
  flex: 1 1 100%;
  font-size: 1.05rem;
}

body.rr-page:not(.ps-page) .rr-cat-category-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.35rem 0.75rem 1rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(24, 105, 68, 0.32);
  border-radius: 0.35rem;
  background: #edf7f0;
  color: #164f36;
  font-weight: 700;
}

body.ps-page .ps-leader-head,
body.ps-page .ps-board-points .ps-leader-row {
  grid-template-columns: 4.4rem minmax(0, 1fr) 5.4rem;
}

@media (max-width: 520px) {
  body.ps-page .ps-board-points .ps-leader-row {
    grid-template-columns: minmax(0, 1fr);
  }

  body.ps-page .ps-cat-line {
    display: block;
    min-width: 0;
    white-space: nowrap;
  }

  body.ps-page .ps-cat-line .ps-cat-name,
  body.ps-page .ps-cat-line .ps-cat-sep,
  body.ps-page .ps-cat-line .ps-exh-name {
    display: inline !important;
    white-space: nowrap !important;
  }

  body.ps-page .ps-cat-line.ps-owner-split .ps-cat-name,
  body.ps-page .ps-cat-line.ps-owner-split .ps-exh-name {
    display: block !important;
    width: 100%;
  }

  body.ps-page .ps-cat-line.ps-owner-split .ps-cat-sep {
    display: none !important;
  }

  body.ps-page .ps-board-points .ps-points strong {
    justify-self: end;
    text-align: right !important;
  }
}

/* Show Results filter panel uses the same static satin-silver surface as public cards. */
body.rr-page:not(.ps-page) .rr-search-panel.rr-search-card {
  background-color: #edf3f7 !important;
  background-image:
    linear-gradient(rgba(241, 249, 255, 0.46), rgba(241, 249, 255, 0.46)),
    url("../../images/silver-card-soft-satin.png") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

@media (min-width: 521px) {
  body.rr-page:not(.ps-page) .rr-award-card .rr-ring-label {
    align-self: center;
    font-size: 12pt;
    line-height: 1.18;
    text-align: left !important;
  }
}
