@font-face {
  font-family: 'Mona Sans';
  src: url('../public/fonts/mona-sans/MonaSansVF-opsz-wght.woff2') format('woff2-variations');
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

@font-face {
  font-family: 'Mona Sans';
  src: url('../public/fonts/mona-sans/MonaSansVF-Italic-opsz-wght.woff2') format('woff2-variations');
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
}

:root {
  --clubhouse-font-family: "Mona Sans", "Segoe UI", Arial, sans-serif;
  --scoodle-navy: #002147;
  --scoodle-deep-navy: #001a33;
  --scoodle-green: #0b3d2e;
  --scoodle-club-green: #006747;
  --scoodle-dark-green: #004830;
  --scoodle-cream: #fff9ea;
  --scoodle-soft-cream: #f7f1e3;
  --scoodle-gold: #c8a44d;
  --scoodle-muted-gold: #a9873d;
  --scoodle-text: #102a43;
  --scoodle-border: rgba(200, 164, 77, 0.38);
  --scoodle-card-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  --scoodle-front-primary: var(--scoodle-club-green);
  --scoodle-front-accent: var(--scoodle-gold);
  --scoodle-front-light: var(--scoodle-cream);
  --scoodle-claim-primary: #2f6fe8;
  --scoodle-claim-accent: #f6b51d;
  --scoodle-claim-selected: #e9f1ff;
}

html[data-admin-theme=irish] body.clubhouse-page {
  --scoodle-claim-primary: #169b62;
  --scoodle-claim-accent: #ff883e;
  --scoodle-claim-selected: #e7f6ef;
}

html[data-admin-theme=usa] body.clubhouse-page {
  --scoodle-claim-primary: #3c3b6e;
  --scoodle-claim-accent: #b22234;
  --scoodle-claim-selected: #edf1fa;
}

html[data-admin-theme=scoodle] body.clubhouse-page {
  --scoodle-claim-primary: #2f6fe8;
  --scoodle-claim-accent: #f6b51d;
  --scoodle-claim-selected: #e9f1ff;
}

html[data-admin-theme=masters] body.clubhouse-page {
  --scoodle-claim-primary: #006747;
  --scoodle-claim-accent: #d8b43a;
  --scoodle-claim-selected: #dff2e9;
}

html {
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body.clubhouse-page {
  width: 100%;
  max-width: 100%;
  min-height: 100dvh;
  margin: 0;
  background: #006747;
  color: var(--scoodle-text);
  font-family: var(--clubhouse-font-family);
  font-optical-sizing: auto;
  overflow: hidden;
}

.clubhouse-page :where(button, input, select, textarea) {
  font-family: inherit;
}

.clubhouse-page *,
.clubhouse-page *::before,
.clubhouse-page *::after {
  box-sizing: border-box;
}

.clubhouse-shell {
  --clubhouse-gutter: clamp(14px, 3.8vw, 24px);
  width: min(100%, 480px);
  max-width: 480px;
  height: 100dvh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: #006747;
  position: relative;
  overflow-x: hidden;
}

.clubhouse-brand-bar {
  position: relative;
  z-index: 4;
  min-height: 78px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 10px;
  padding: 8px clamp(14px, 4.6vw, 24px);
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 33, 71, 0.12);
}

.clubhouse-brand {
  grid-column: 2;
  display: grid;
  justify-items: center;
  min-width: 0;
}

.clubhouse-brand img {
  width: min(280px, 70vw);
  height: 62px;
  object-fit: contain;
}

.clubhouse-profile-button {
  grid-column: 3;
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--scoodle-green);
  cursor: pointer;
}

.clubhouse-profile-button::after {
  content: none;
  display: none;
}

.clubhouse-profile-button img {
  width: 42px;
  height: 42px;
  display: block;
}

.clubhouse-content {
  display: grid;
  align-content: start;
  gap: clamp(8px, 1.1dvh, 14px);
  width: 100%;
  min-width: 0;
  min-height: 0;
  padding: 0 var(--clubhouse-gutter) clamp(7px, 1.4dvh, 12px);
  background: #006747;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.clubhouse-content::-webkit-scrollbar {
  display: none;
}

.clubhouse-loading {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  color: var(--scoodle-cream);
}

.clubhouse-loading strong {
  font-size: 1.2rem;
}

.clubhouse-hero {
  --clubhouse-hero-message-height: clamp(82px, 17vw, 104px);
  --clubhouse-hero-photo-x: 50%;
  --clubhouse-hero-photo-y: 40%;
  --clubhouse-hero-photo-top: var(--clubhouse-hero-message-height);
  --clubhouse-hero-frame: clamp(6px, 1.7vw, 10px);
  position: relative;
  isolation: isolate;
  min-height: clamp(282px, 58vw, 380px);
  display: grid;
  justify-items: center;
  align-content: start;
  margin: 0 calc(var(--clubhouse-gutter) * -1) -6px;
  padding: 0 var(--clubhouse-hero-frame) 72px;
  overflow: hidden;
  color: var(--scoodle-cream);
  background: #006747;
}

.clubhouse-hero::before {
  content: "";
  position: absolute;
  inset: var(--clubhouse-hero-photo-top) var(--clubhouse-hero-frame) 0;
  z-index: -2;
  background: var(--scoodle-clubhouse-frame-image, url("../assets/Pebble_Club_Home.jpg")) var(--clubhouse-hero-photo-x) var(--clubhouse-hero-photo-y) / cover;
  filter: var(--scoodle-clubhouse-frame-filter, saturate(1.13) brightness(1.12) contrast(1.03));
  transform: none;
}

.clubhouse-hero::after {
  content: "";
  position: absolute;
  inset: var(--clubhouse-hero-photo-top) var(--clubhouse-hero-frame) 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 30, 63, 0.04) 0%,
      rgba(0, 30, 63, 0) 38%,
      rgba(0, 30, 63, 0) calc(100% - 15px),
      #006747 100%
    );
}

.clubhouse-frame-gallery-controls {
  position: absolute;
  top: calc(var(--clubhouse-hero-photo-top) + 10px);
  right: calc(var(--clubhouse-hero-frame) + 10px);
  z-index: 3;
  min-height: 34px;
  display: grid;
  grid-template-columns: 32px auto 32px;
  align-items: center;
  padding: 0 2px;
  border: 1px solid rgba(0, 103, 71, 0.36);
  border-radius: 8px;
  color: #006747;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 3px 12px rgba(0, 30, 63, 0.14);
  backdrop-filter: blur(4px);
}

.clubhouse-frame-gallery-control {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 6px;
  color: #006747;
  background: transparent;
  font: inherit;
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.clubhouse-frame-gallery-control span {
  display: block;
  line-height: 1;
  transform: translateY(-1px);
}

.clubhouse-frame-gallery-status {
  min-width: 48px;
  padding: 0 8px;
  border-right: 1px solid rgba(0, 103, 71, 0.24);
  border-left: 1px solid rgba(0, 103, 71, 0.24);
  color: #49665d;
  font-size: 0.62rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.clubhouse-frame-gallery-control:hover,
.clubhouse-frame-gallery-control:focus-visible {
  color: #003d2c;
  background: rgba(226, 186, 47, 0.2);
  outline: 2px solid rgba(226, 186, 47, 0.56);
  outline-offset: 0;
}

.clubhouse-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: var(--clubhouse-hero-message-height);
  align-content: center;
  padding: 10px clamp(14px, 4vw, 24px) 11px;
  background: #006747;
  text-align: center;
}

.clubhouse-hero-copy.has-navigation {
  padding-right: clamp(14px, 4vw, 24px);
  padding-left: clamp(14px, 4vw, 24px);
}

.clubhouse-welcome-menu {
  position: absolute;
  top: 50%;
  right: clamp(6px, 1.8vw, 10px);
  z-index: 20;
  width: 28px;
  height: 36px;
  transform: translateY(-50%);
}

.clubhouse-welcome-menu .mobile-overflow-menu-button {
  width: 28px;
  height: 36px;
  padding: 0 0 3px;
  border-radius: 0;
  color: var(--scoodle-cream);
  background: transparent;
  box-shadow: none;
}

.clubhouse-welcome-menu .mobile-overflow-menu-button:hover,
.clubhouse-welcome-menu .mobile-overflow-menu-button:focus-visible {
  color: #fff;
  background: transparent;
  outline-color: var(--scoodle-gold);
}

.clubhouse-welcome-menu .mobile-overflow-menu-panel {
  color: #14213d;
}

.clubhouse-kicker-row,
.clubhouse-hero-divider {
  width: min(100%, 320px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(8px, 2.6vw, 14px);
  color: var(--scoodle-gold);
}

.clubhouse-kicker-row span,
.clubhouse-hero-divider span {
  height: 2px;
  background: currentColor;
}

.clubhouse-kicker-row em {
  color: var(--scoodle-cream);
  font-family: inherit;
  font-size: clamp(11px, 2.9vw, 17px);
  font-style: normal;
  font-weight: 800;
  letter-spacing: clamp(0.08em, 1.35vw, 0.16em);
  text-transform: uppercase;
  white-space: nowrap;
}

.clubhouse-hero h1 {
  justify-self: center;
  margin: 2px auto 0;
  color: var(--scoodle-cream);
  font-family: inherit;
  width: max-content;
  max-width: 100%;
  font-size: clamp(25px, 6.45vw, 38px);
  font-weight: 650;
  line-height: 0.94;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.42);
  white-space: nowrap;
}

.clubhouse-hero-divider {
  display: none;
  width: min(100%, 248px);
}

.clubhouse-hero-divider i {
  width: 26px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--scoodle-gold);
}

.clubhouse-hero-divider img {
  width: 25px;
  height: 25px;
  display: block;
  object-fit: contain;
}

.clubhouse-hero p {
  margin: 2px 0 0;
  color: var(--scoodle-gold);
  font-family: inherit;
  width: 100%;
  max-width: 100%;
  font-size: clamp(12px, 3vw, 16px);
  font-style: italic;
  font-weight: 650;
  line-height: 1.15;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
}

.clubhouse-master-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1dvh, 12px);
  width: 100%;
  min-width: 0;
  margin-top: clamp(8px, 1.5dvh, 16px);
}

.clubhouse-master-card,
.clubhouse-around-row {
  color: var(--scoodle-text);
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.78), transparent 28%),
    linear-gradient(135deg, var(--scoodle-cream), var(--scoodle-soft-cream));
  border: 1px solid var(--scoodle-border);
  border-radius: 10px;
  box-shadow: var(--scoodle-card-shadow);
  text-decoration: none;
}

.clubhouse-master-card {
  position: relative;
  min-width: 0;
  min-height: 60px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 10px;
  align-items: center;
  column-gap: 8px;
  padding: 7px 9px;
  overflow: hidden;
  border: 1px solid var(--scoodle-border);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

button.clubhouse-master-card {
  width: 100%;
}

.clubhouse-master-card.tournament-office {
  grid-column: 1 / -1;
  min-height: 66px;
  grid-template-columns: 48px minmax(0, 1fr) 14px;
  column-gap: 10px;
  padding: 8px 12px;
  border-color: var(--scoodle-gold);
  color: var(--scoodle-dark-green);
  background: #e8d8b5;
}

.clubhouse-master-card.tournament-office .clubhouse-master-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.clubhouse-master-card.tournament-office .clubhouse-master-copy strong {
  color: var(--scoodle-dark-green);
  font-size: clamp(1.02rem, 3.5vw, 1.18rem);
}

.clubhouse-master-card.tournament-office .clubhouse-chevron {
  filter: none;
}

.clubhouse-master-icon,
.clubhouse-around-icon {
  display: grid;
  place-items: center;
  color: #145c36;
}

.clubhouse-master-icon img {
  width: 42px;
  height: 42px;
  display: block;
}

.clubhouse-master-copy,
.clubhouse-around-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
  align-content: center;
}

.clubhouse-around-title-row {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 8px;
}

.clubhouse-around-title-row > strong {
  min-width: 0;
}

.clubhouse-master-copy strong,
.clubhouse-around-copy strong {
  color: #174b2f;
  font-family: inherit;
  font-size: clamp(0.98rem, 3.65vw, 1.46rem);
  line-height: 1.08;
  overflow-wrap: normal;
}

.clubhouse-master-copy strong {
  font-size: clamp(0.86rem, 3.25vw, 1rem);
  font-weight: 760;
  line-height: 1;
}

.clubhouse-around-copy strong {
  font-size: clamp(0.94rem, 3.2vw, 1.12rem);
  font-weight: 760;
}

.clubhouse-master-card[data-clubhouse-action="schedule-events"] .clubhouse-master-copy strong {
  display: grid;
  gap: 0;
  line-height: 1;
}

.clubhouse-master-title-primary,
.clubhouse-master-title-secondary {
  display: block;
}

.clubhouse-master-title-primary {
  font-size: clamp(1.08rem, 5vw, 1.34rem);
  font-weight: 820;
  line-height: 0.94;
}

.clubhouse-master-title-secondary {
  margin-top: 2px;
  font-size: clamp(0.88rem, 3.8vw, 1.04rem);
  font-weight: 740;
  line-height: 1;
}

.clubhouse-master-card[data-clubhouse-action="member-profile"] .clubhouse-master-copy strong {
  font-size: clamp(1.08rem, 5vw, 1.34rem);
  font-weight: 820;
  line-height: 0.96;
}

.clubhouse-around-copy small,
.clubhouse-around-scorecard {
  color: rgba(16, 42, 67, 0.7);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.12;
}

.clubhouse-around-scorecard {
  width: fit-content;
  max-width: 100%;
  justify-self: end;
  padding: 3px 7px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--scoodle-front-primary);
}

.clubhouse-master-copy small,
.clubhouse-around-copy small {
  color: var(--scoodle-text);
  font-size: clamp(0.74rem, 2.55vw, 0.98rem);
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.clubhouse-around-copy small.clubhouse-around-detail-lines {
  display: grid;
  row-gap: 0;
  line-height: 1.12;
}

.clubhouse-chevron {
  width: 14px;
  height: 14px;
  position: relative;
  right: auto;
  top: auto;
  background:
    image-set(
      url("../public/icons/scoodle/chevron.png?v=clubhouse-34") 1x,
      url("../public/icons/scoodle/chevron@2x.png?v=clubhouse-34") 2x,
      url("../public/icons/scoodle/chevron@3x.png?v=clubhouse-34") 3x
    )
    center / contain no-repeat;
  border: 0;
  transform: none;
  justify-self: end;
}

.clubhouse-around-row .clubhouse-chevron {
  right: auto;
}

.clubhouse-member-summary {
  display: grid;
  gap: 9px;
  padding: 10px;
  border: 1px solid rgba(200, 164, 77, 0.45);
  border-radius: 12px;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(135deg, rgba(0, 33, 71, 0.95), rgba(0, 74, 48, 0.96));
  color: #ffffff;
  box-shadow: var(--scoodle-card-shadow);
}

.clubhouse-member-summary > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.clubhouse-member-summary span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.clubhouse-member-summary strong {
  min-width: 0;
  color: var(--scoodle-gold);
  font-family: inherit;
  font-size: 1.02rem;
  line-height: 1;
}

.clubhouse-member-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.clubhouse-member-link {
  min-width: 0;
  min-height: 40px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.clubhouse-member-link span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
}

.clubhouse-member-link img {
  width: 25px;
  height: 25px;
  display: block;
  object-fit: contain;
}

.clubhouse-member-link strong {
  color: #ffffff;
  font-family: inherit;
  font-size: 0.72rem;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.clubhouse-around-section {
  display: grid;
  gap: clamp(7px, 0.9dvh, 11px);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  justify-self: stretch;
  margin-top: auto;
  padding-top: clamp(7px, 1dvh, 14px);
}

.clubhouse-around-heading {
  display: grid;
  justify-items: center;
  gap: 5px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  color: var(--scoodle-gold);
  text-align: center;
}

.clubhouse-heading-rule {
  width: min(100%, 258px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 11px;
}

.clubhouse-heading-rule span {
  height: 2px;
  background:
    linear-gradient(90deg, transparent, currentColor 16%, currentColor 84%, transparent);
  opacity: 0.88;
}

.clubhouse-heading-rule i {
  width: 36px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--scoodle-gold);
}

.clubhouse-heading-rule img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(67%) sepia(34%) saturate(591%) hue-rotate(4deg) brightness(92%) contrast(87%);
}

.clubhouse-around-heading h2 {
  margin: 0;
  color: var(--scoodle-cream);
  font-family: inherit;
  font-size: clamp(0.9rem, 3vw, 1.22rem);
  font-weight: 620;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.32);
  white-space: nowrap;
}

.clubhouse-around-list {
  display: grid;
  gap: clamp(8px, 0.9dvh, 12px);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  justify-self: stretch;
}

.clubhouse-around-row {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 40px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 10px;
  align-items: center;
  column-gap: 7px;
  padding: 5px 9px;
  position: relative;
  overflow: hidden;
}

.clubhouse-around-icon {
  height: 42px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(200, 164, 77, 0.34);
}

.clubhouse-around-icon img {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
}

.clubhouse-bottom-nav {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 32;
  width: 100%;
  max-width: 480px;
  transform: none;
  min-height: clamp(42px, 6.4dvh, 54px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: clamp(1px, 0.45dvh, 3px) 0 calc(clamp(1px, 0.45dvh, 3px) + env(safe-area-inset-bottom));
  background: #ffffff;
  border-top: 1px solid rgba(0, 33, 71, 0.12);
  box-shadow: 0 -8px 22px rgba(0, 0, 0, 0.08);
}

.clubhouse-bottom-nav.member-nav {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.clubhouse-bottom-nav.member-nav a,
.clubhouse-bottom-nav.member-nav button {
  font-size: clamp(0.48rem, 1.4vw, 0.62rem);
}

.clubhouse-bottom-nav a,
.clubhouse-bottom-nav button {
  min-width: 0;
  min-height: clamp(34px, 5.1dvh, 44px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  border: 0;
  border-right: 1px solid rgba(0, 33, 71, 0.16);
  border-radius: 0;
  color: var(--scoodle-green);
  background: transparent;
  font: inherit;
  font-size: clamp(0.42rem, 1.35vw, 0.58rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.clubhouse-bottom-nav a:last-child,
.clubhouse-bottom-nav button:last-child {
  border-right: 0;
}

.clubhouse-bottom-nav a.active,
.clubhouse-bottom-nav button.active {
  color: var(--scoodle-gold);
}

.clubhouse-bottom-nav .clubhouse-nav-label {
  display: grid;
  justify-items: center;
  gap: 0;
  line-height: 1;
}

.clubhouse-bottom-nav [data-scorecard-footer-sublabel] {
  margin-top: 2px;
  color: var(--scoodle-gold);
  font-size: 0.78em;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.clubhouse-bottom-nav [data-casual-scorecard-footer-sublabel] {
  margin-top: 2px;
  color: var(--scoodle-gold);
  font-size: 0.78em;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.clubhouse-nav-icon {
  position: relative;
  width: clamp(18px, 2.85dvh, 23px);
  height: clamp(18px, 2.85dvh, 23px);
  display: block;
  background: var(--clubhouse-nav-icon-url) center / contain no-repeat;
}

[data-clubhouse-nav="home"] .clubhouse-nav-icon {
  --clubhouse-nav-icon-url: image-set(
    url("../public/icons/scoodle/clubhouse-active.png?v=clubhouse-34") 1x,
    url("../public/icons/scoodle/clubhouse-active@2x.png?v=clubhouse-34") 2x,
    url("../public/icons/scoodle/clubhouse-active@3x.png?v=clubhouse-34") 3x
  );
}

[data-clubhouse-nav="scorecard"] .clubhouse-nav-icon,
[data-clubhouse-nav="casual"] .clubhouse-nav-icon {
  --clubhouse-nav-icon-url: image-set(
    url("../public/icons/scoodle/scorecard-footer.png?v=clubhouse-34") 1x,
    url("../public/icons/scoodle/scorecard-footer@2x.png?v=clubhouse-34") 2x,
    url("../public/icons/scoodle/scorecard-footer@3x.png?v=clubhouse-34") 3x
  );
}

[data-clubhouse-nav="results"] .clubhouse-nav-icon {
  --clubhouse-nav-icon-url: image-set(
    url("../public/icons/scoodle/results-footer.png?v=clubhouse-34") 1x,
    url("../public/icons/scoodle/results-footer@2x.png?v=clubhouse-34") 2x,
    url("../public/icons/scoodle/results-footer@3x.png?v=clubhouse-34") 3x
  );
}

[data-clubhouse-nav="stats"] .clubhouse-nav-icon {
  --clubhouse-nav-icon-url: image-set(
    url("../public/icons/scoodle/stats.png?v=clubhouse-34") 1x,
    url("../public/icons/scoodle/stats@2x.png?v=clubhouse-34") 2x,
    url("../public/icons/scoodle/stats@3x.png?v=clubhouse-34") 3x
  );
}

[data-clubhouse-nav="more"] .clubhouse-nav-icon {
  --clubhouse-nav-icon-url: image-set(
    url("../public/icons/scoodle/more.png?v=clubhouse-34") 1x,
    url("../public/icons/scoodle/more@2x.png?v=clubhouse-34") 2x,
    url("../public/icons/scoodle/more@3x.png?v=clubhouse-34") 3x
  );
}

.clubhouse-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.48);
}

.clubhouse-dialog-backdrop[hidden] {
  display: none;
}

.clubhouse-dialog {
  width: min(100%, 392px);
  max-height: min(calc(100dvh - 32px), 680px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(200, 164, 77, 0.5);
  border-radius: 14px;
  background: var(--scoodle-cream);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

.clubhouse-dialog.wide {
  width: min(100%, 440px);
}

.clubhouse-dialog.wide:has(.clubhouse-scorecard-identity) {
  width: min(100%, 500px);
}

.clubhouse-dialog-head {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 38px;
  gap: 10px;
  align-items: start;
  padding: 15px;
  color: #ffffff;
  background: var(--scoodle-front-primary);
  border-bottom: 3px solid var(--scoodle-front-accent);
}

.clubhouse-dialog-head strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.08;
}

.clubhouse-dialog-head > div > span {
  display: block;
  margin-top: 3px;
  font-size: 0.78rem;
  font-weight: 750;
  opacity: 0.88;
}

.clubhouse-dialog-head > div > span span {
  display: block;
  margin-top: 2px;
  line-height: 1.15;
}

.clubhouse-dialog-head button {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: #ffffff;
  background: transparent;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.clubhouse-member-form,
.clubhouse-more-list,
.clubhouse-groups-list,
.clubhouse-modal-body {
  display: grid;
  gap: 12px;
}

.clubhouse-modal-body {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 14px;
  -webkit-overflow-scrolling: touch;
}

.clubhouse-dialog-footer {
  position: relative;
  z-index: 4;
  padding: 10px 14px max(10px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(0, 33, 71, 0.14);
  background: var(--scoodle-cream);
  box-shadow: 0 -5px 14px rgba(0, 33, 71, 0.08);
}

.clubhouse-dialog-footer[hidden] {
  display: none;
}

.clubhouse-member-form label {
  display: grid;
  gap: 6px;
}

.clubhouse-member-form label > span {
  color: var(--scoodle-text);
  font-size: 0.76rem;
  font-weight: 950;
}

.clubhouse-member-form input {
  min-width: 0;
  min-height: 42px;
  border: 1px solid rgba(0, 33, 71, 0.22);
  border-radius: 8px;
  background: #ffffff;
  color: var(--scoodle-text);
  font: inherit;
  padding: 0 10px;
}

.clubhouse-member-form select,
.clubhouse-member-form textarea {
  min-width: 0;
  min-height: 42px;
  border: 1px solid rgba(0, 33, 71, 0.22);
  border-radius: 8px;
  background: #ffffff;
  color: var(--scoodle-text);
  font: inherit;
  padding: 0 10px;
}

.clubhouse-form-grid,
.clubhouse-verification-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.clubhouse-name-fields {
  display: grid;
  gap: 11px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 92px;
  min-width: 0;
}

.clubhouse-check-row {
  grid-template-columns: 22px 1fr;
  align-items: center;
}

.clubhouse-check-row input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  accent-color: var(--scoodle-navy);
}

.clubhouse-check-row > span {
  color: var(--scoodle-text);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.18;
}

.clubhouse-dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.clubhouse-dialog-actions.single {
  grid-template-columns: 1fr;
}
.clubhouse-dialog-actions.member-success-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}


.clubhouse-stats-loading {
  min-height: 160px;
  display: grid;
  place-items: center;
  color: var(--scoodle-dark-green);
  font-size: 0.92rem;
  font-weight: 850;
}

.clubhouse-stats-period {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.clubhouse-stats-period > span {
  color: var(--scoodle-dark-green);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.clubhouse-stats-period select {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--scoodle-muted-gold);
  border-radius: 8px;
  color: var(--scoodle-text);
  background: #ffffff;
  font: inherit;
  font-weight: 850;
}

.clubhouse-stats-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--scoodle-gold);
  border-radius: 8px;
  background: var(--scoodle-dark-green);
}

.clubhouse-stats-summary > span,
.clubhouse-stats-round > div > span {
  min-width: 0;
  display: grid;
  gap: 2px;
  text-align: center;
}

.clubhouse-stats-summary small {
  color: var(--scoodle-cream);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.1;
}

.clubhouse-stats-summary strong {
  color: #ffffff;
  font-size: 1rem;
}

.clubhouse-stats-rounds {
  display: grid;
  gap: 8px;
}

.clubhouse-stats-round {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(0, 103, 71, 0.28);
  border-radius: 8px;
  background: #ffffff;
}

.clubhouse-stats-round > header {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 8px;
  margin-bottom: 8px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(0, 103, 71, 0.16);
}

.clubhouse-stats-round > header > span {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.clubhouse-stats-round > header strong,
.clubhouse-stats-round > header small,
.clubhouse-stats-round > header em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clubhouse-stats-round > header strong {
  color: var(--scoodle-dark-green);
  font-size: 0.82rem;
}

.clubhouse-stats-round > header small,
.clubhouse-stats-round > header em {
  color: #607168;
  font-size: 0.66rem;
  font-style: normal;
}

.clubhouse-stats-round > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.clubhouse-stats-round > div small {
  color: #607168;
  font-size: 0.56rem;
  font-weight: 850;
  line-height: 1.1;
}

.clubhouse-stats-round > div strong {
  color: var(--scoodle-text);
  font-size: 0.82rem;
}

.clubhouse-dialog-actions a,
.clubhouse-dialog-actions button,
.clubhouse-more-list a,
.clubhouse-more-list button,
.clubhouse-coming-list a,
.clubhouse-coming-list button {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--scoodle-navy);
  font: inherit;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.clubhouse-dialog-actions button.secondary,
.clubhouse-dialog-actions a.secondary,
.clubhouse-more-list button:first-child {
  color: var(--scoodle-navy);
  background: #ffffff;
  border-color: rgba(0, 33, 71, 0.22);
}
@media (max-width: 440px) {
  .clubhouse-dialog-actions.member-success-actions {
    grid-template-columns: 1fr;
  }
}


.clubhouse-access-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(0, 33, 71, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
}

.clubhouse-access-tabs button {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  color: var(--scoodle-navy);
  background: transparent;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.clubhouse-access-tabs button.active {
  color: #ffffff;
  background: var(--scoodle-navy);
}

.clubhouse-security-note,
.clubhouse-form-error {
  margin: 0;
  padding: 9px 10px;
  border-radius: 9px;
  color: var(--scoodle-navy);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 750;
  line-height: 1.35;
}

.clubhouse-text-action {
  width: fit-content;
  margin: -4px 0 2px auto;
  padding: 2px 0;
  border: 0;
  background: transparent;
  color: var(--clubhouse-blue, #062b57);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.clubhouse-return-scorecard {
  margin-bottom: 12px;
  text-align: center;
}

.clubhouse-return-scorecard a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--clubhouse-green, #006747);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.clubhouse-form-error {
  color: #8b1f2f;
  border: 1px solid rgba(139, 31, 47, 0.32);
  background: rgba(255, 242, 244, 0.92);
}

.clubhouse-tour-toggle {
  padding: 10px;
  border: 1px solid rgba(200, 164, 77, 0.38);
  border-radius: 11px;
  background: #ffffff;
}

.clubhouse-tour-director-panel,
.clubhouse-success-card,
.clubhouse-member-only-card,
.clubhouse-profile-summary {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(0, 103, 71, 0.24);
  border-radius: 12px;
  background: #ffffff;
}

.clubhouse-tour-director-panel[hidden] {
  display: none;
}

.clubhouse-panel-intro {
  display: grid;
  gap: 3px;
}

.clubhouse-panel-intro strong,
.clubhouse-success-card strong,
.clubhouse-member-only-card strong,
.clubhouse-profile-summary strong {
  color: var(--scoodle-navy);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.06;
}

.clubhouse-panel-intro span,
.clubhouse-success-card span,
.clubhouse-profile-summary span {
  color: rgba(16, 42, 67, 0.78);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.24;
}

.clubhouse-success-card code {
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(200, 164, 77, 0.7);
  border-radius: 999px;
  color: var(--scoodle-front-primary);
  background: var(--scoodle-front-light);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.clubhouse-success-card em {
  color: var(--scoodle-muted-gold);
  font-family: inherit;
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 700;
}

.clubhouse-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.clubhouse-question-chip {
  min-height: 44px;
  padding: 8px;
  border: 1px solid rgba(0, 33, 71, 0.14);
  border-radius: 10px;
  background: var(--scoodle-soft-cream);
}

.clubhouse-member-only-card {
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
}

.clubhouse-member-only-icon,
.clubhouse-feature-tile span {
  display: grid;
  place-items: center;
}

.clubhouse-member-only-icon img {
  width: 54px;
  height: 54px;
  display: block;
}

.clubhouse-member-only-card p {
  margin: 4px 0 0;
  color: rgba(16, 42, 67, 0.8);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.3;
}

.clubhouse-scorecard-identity {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(200, 164, 77, 0.46);
  border-radius: 12px;
  background: var(--scoodle-soft-cream);
}

.clubhouse-scorecard-identity strong {
  color: var(--scoodle-navy);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.06;
}

.clubhouse-scorecard-identity span {
  color: rgba(16, 42, 67, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.22;
}

.clubhouse-scorecard-identity-list {
  display: grid;
  gap: 7px;
}

.clubhouse-scorecard-identity-row {
  align-items: end;
  display: grid;
  gap: 6px;
  grid-template-columns: minmax(0, 1fr) 100px 52px;
}

.clubhouse-scorecard-identity-row.is-known {
  grid-template-columns: minmax(0, 1fr) 100px;
}

.clubhouse-scorecard-identity-list button {
  min-height: 32px;
  padding: 5px 9px;
  border: 1px solid rgba(0, 103, 71, 0.24);
  border-radius: 9px;
  color: var(--scoodle-navy);
  background: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.clubhouse-scorecard-identity-row label {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.clubhouse-scorecard-identity-row label > span {
  color: rgba(16, 42, 67, 0.8);
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
}

.clubhouse-scorecard-identity-row input {
  box-sizing: border-box;
  width: 100%;
  min-height: 32px;
  border: 1px solid rgba(0, 103, 71, 0.36);
  border-radius: 9px;
  color: var(--scoodle-navy);
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  padding: 5px 8px;
}

.clubhouse-scorecard-identity-list .clubhouse-scorecard-find-button {
  min-height: 32px;
  padding-inline: 6px;
  text-align: center;
}

.clubhouse-scorecard-known-number {
  align-self: end;
  min-height: 32px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  border: 1px solid rgba(0, 103, 71, 0.24);
  border-radius: 9px;
  color: var(--scoodle-navy) !important;
  background: #fff;
  font-size: 14px !important;
  font-weight: 650 !important;
  line-height: 1;
}

@media (max-width: 430px) {
  .clubhouse-scorecard-identity-row {
    gap: 4px;
    grid-template-columns: minmax(0, 1fr) 100px 48px;
  }
}

.clubhouse-scorecard-entry-status {
  margin: 0;
  color: rgba(16, 42, 67, 0.82);
  font-size: 13px;
  font-weight: 600;
}

.clubhouse-scorecard-entry-status[data-tone="error"] {
  color: #a12b20;
}

.clubhouse-profile-photo-field {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(0, 103, 71, 0.18);
  border-radius: 12px;
  background: var(--scoodle-soft-cream);
}

.clubhouse-profile-photo-preview {
  width: 62px;
  height: 62px;
  border: 3px solid var(--scoodle-gold);
  border-radius: 999px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--scoodle-navy);
  font-weight: 950;
}

.clubhouse-profile-photo-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.clubhouse-tee-time-list {
  display: grid;
  gap: 10px;
}

.clubhouse-roster-search {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.clubhouse-roster-search label {
  color: var(--scoodle-navy);
  font-size: 0.78rem;
  font-weight: 950;
}

.clubhouse-roster-search > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
}

.clubhouse-roster-search input {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid rgba(0, 33, 71, 0.24);
  border-radius: 8px;
  color: var(--scoodle-text);
  background: #ffffff;
  font: inherit;
}

.clubhouse-roster-search button,
.clubhouse-roster-pager button {
  min-height: 40px;
  padding: 8px 12px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: var(--scoodle-navy);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 950;
  cursor: pointer;
}

.clubhouse-roster-search button:disabled,
.clubhouse-roster-pager button:disabled {
  opacity: 0.4;
  cursor: default;
}

.clubhouse-roster-list {
  display: grid;
  gap: 7px;
}

.clubhouse-roster-row {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(0, 103, 71, 0.2);
  border-radius: 9px;
  color: var(--scoodle-text);
  background: #ffffff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.clubhouse-roster-row:disabled {
  opacity: 0.62;
  cursor: default;
}

.clubhouse-roster-row > span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.clubhouse-roster-row strong {
  overflow-wrap: anywhere;
  color: var(--scoodle-navy);
  font-size: 0.88rem;
  line-height: 1.1;
}

.clubhouse-roster-row small {
  color: rgba(16, 42, 67, 0.72);
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.15;
}

.clubhouse-roster-row b {
  width: max-content;
  max-width: 82px;
  padding: 6px 7px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--scoodle-front-primary);
  font-size: 0.6rem;
  line-height: 1;
  text-align: center;
}

.clubhouse-roster-pager {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.clubhouse-roster-pager span,
.clubhouse-roster-count {
  color: var(--scoodle-navy);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
}

.clubhouse-tee-time-card {
  width: 100%;
  min-width: 0;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(0, 103, 71, 0.22);
  border-radius: 12px;
  color: var(--scoodle-text);
  background: #ffffff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.clubhouse-tee-time-card span,
.clubhouse-pairing-card {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.clubhouse-tee-time-card strong,
.clubhouse-pairing-card strong {
  color: var(--scoodle-navy);
  font-family: inherit;
  font-size: 0.98rem;
  line-height: 1.1;
}

.clubhouse-tee-time-card small,
.clubhouse-tee-time-card em,
.clubhouse-pairing-card span {
  color: rgba(16, 42, 67, 0.72);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 750;
  line-height: 1.2;
}

.clubhouse-tee-time-card b {
  width: max-content;
  max-width: 108px;
  padding: 6px 8px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--scoodle-front-primary);
  font-size: 0.66rem;
  line-height: 1;
  text-align: center;
}

.clubhouse-tee-time-card .clubhouse-pairing-time-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 12px;
}

.clubhouse-tee-time-card .clubhouse-pairing-code {
  background: transparent;
  border: 0;
  color: var(--scoodle-front-primary, #002868);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin-left: auto;
  padding: 0;
  text-align: right;
  white-space: nowrap;
}

.clubhouse-unfinished-reminder {
  margin: 0;
  padding: 6px 7px;
  border: 1px solid rgba(201, 65, 59, 0.2);
  border-radius: 7px;
  color: #6e312d;
  background: #fff8f5;
  font-size: clamp(0.52rem, 2.15vw, 0.68rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.clubhouse-casual-center-start {
  display: flex;
  justify-content: flex-start;
}

.clubhouse-casual-center-start button {
  min-height: 36px;
  width: max-content;
  max-width: 100%;
  padding: 7px 13px;
  border: 1px solid color-mix(in srgb, var(--scoodle-front-primary) 68%, #ffffff);
  border-radius: 999px;
  color: #ffffff;
  background: var(--scoodle-front-primary);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

.clubhouse-dialog:has(.clubhouse-casual-center-start) .clubhouse-dialog-head {
  grid-template-columns: minmax(0, 1fr) 30px;
  gap: 7px;
  align-items: center;
  padding: 8px 10px;
  border-bottom-width: 2px;
}

.clubhouse-dialog:has(.clubhouse-casual-center-start) .clubhouse-dialog-head strong {
  font-size: 0.98rem;
  line-height: 1;
}

.clubhouse-dialog:has(.clubhouse-casual-center-start) .clubhouse-dialog-head button {
  width: 30px;
  height: 30px;
}

.clubhouse-unfinished-section {
  display: grid;
  gap: 7px;
  padding: 10px;
  border: 1px solid rgba(0, 103, 71, 0.2);
  border-radius: 12px;
  background: rgba(0, 103, 71, 0.035);
}

.clubhouse-unfinished-section-head {
  display: grid;
  gap: 2px;
}

.clubhouse-unfinished-section h3 {
  margin: 0;
  color: var(--scoodle-navy);
  font-family: inherit;
  font-size: 0.94rem;
  line-height: 1.1;
}

.clubhouse-unfinished-section-head p {
  margin: 0;
  color: rgba(16, 42, 67, 0.7);
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.2;
}

.clubhouse-casual-center-empty {
  margin: 0;
  padding: 12px;
  border-radius: 10px;
  color: rgba(16, 42, 67, 0.72);
  background: rgba(0, 103, 71, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
}

.clubhouse-unfinished-list,
.clubhouse-unfinished-delete-list {
  display: grid;
  gap: 7px;
}

.clubhouse-unfinished-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  padding: 8px;
  border: 1px solid rgba(0, 103, 71, 0.22);
  border-radius: 12px;
  background: #ffffff;
}

.clubhouse-unfinished-select {
  min-width: 0;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

.clubhouse-unfinished-select input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--scoodle-front-primary);
}

.clubhouse-unfinished-select span,
.clubhouse-unfinished-delete-list span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.clubhouse-unfinished-select strong,
.clubhouse-unfinished-delete-list strong {
  color: var(--scoodle-navy);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.12;
}

.clubhouse-unfinished-select small,
.clubhouse-unfinished-select em,
.clubhouse-unfinished-delete-list small {
  overflow: hidden;
  color: rgba(16, 42, 67, 0.72);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  text-overflow: ellipsis;
}

.clubhouse-unfinished-select .clubhouse-unfinished-players {
  font-size: 0.7rem;
  font-weight: 500;
  white-space: nowrap;
}

.clubhouse-unfinished-select .clubhouse-unfinished-course {
  font-size: 0.74rem;
  font-weight: 500;
  white-space: nowrap;
}

.clubhouse-unfinished-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  width: 58px;
}

.clubhouse-unfinished-actions button {
  min-height: 28px;
  padding: 0 6px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #ffffff;
  background: var(--scoodle-front-primary);
  font: inherit;
  font-size: 0.64rem;
  font-weight: 700;
  cursor: pointer;
}

.clubhouse-unfinished-actions button.danger,
.clubhouse-dialog-actions button.danger {
  color: #ffffff;
  border-color: #a52e2a;
  background: #b93731;
}

.clubhouse-dialog-actions button.danger.secondary {
  color: #9d2e29;
  border-color: rgba(185, 55, 49, 0.38);
  background: #ffffff;
}

.clubhouse-dialog-actions button:disabled {
  opacity: 0.46;
  cursor: not-allowed;
}

.clubhouse-unfinished-delete-list span {
  padding: 10px 12px;
  border: 1px solid rgba(0, 33, 71, 0.14);
  border-radius: 10px;
  background: #ffffff;
}

@media (max-width: 350px) {
  .clubhouse-unfinished-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .clubhouse-unfinished-actions {
    grid-template-columns: 1fr 1fr;
    width: auto;
    padding-left: 25px;
  }
}

.clubhouse-office-pairing-list .clubhouse-tee-time-card small {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.clubhouse-pairing-card {
  gap: 10px;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  background: var(--scoodle-soft-cream);
}

.clubhouse-pairing-topline,
.clubhouse-pairing-subline {
  display: grid;
  gap: 3px;
  padding: 0 2px;
  border-radius: 10px;
  background: transparent;
}

.clubhouse-pairing-subline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  color: var(--scoodle-navy);
  font-size: 0.8rem;
  font-weight: 950;
  text-align: center;
}

.clubhouse-pairing-table {
  display: grid;
  gap: 6px;
}

.clubhouse-pairing-header,
.clubhouse-pairing-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  align-items: center;
  gap: 8px;
}

.clubhouse-pairing-header {
  padding: 2px 4px;
}

.clubhouse-pairing-header strong {
  color: var(--scoodle-navy);
  font-size: 0.75rem;
  font-weight: 950;
  line-height: 1;
}

.clubhouse-pairing-header strong:last-child {
  text-align: center;
}

.clubhouse-pairing-name {
  min-width: 0;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--scoodle-navy);
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.1;
}

.clubhouse-scorekeeper-cell {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 4px;
}

.clubhouse-scorekeeper-cell i {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--scoodle-front-primary);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 950;
}

.clubhouse-scorekeeper-cell button,
.clubhouse-scorekeeper-link {
  grid-column: 1;
  min-width: 0;
  min-height: 30px;
  padding: 5px 7px;
  border: 1px solid rgba(0, 103, 71, 0.2);
  border-radius: 999px;
  color: #ffffff;
  background: var(--scoodle-front-primary);
  font: inherit;
  font-size: 0.64rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.clubhouse-scorekeeper-label {
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 5px 7px;
  border-radius: 999px;
  color: var(--scoodle-navy);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.64rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
}

.clubhouse-scorekeeper-cell button:disabled {
  color: var(--scoodle-navy);
  background: rgba(255, 255, 255, 0.72);
  cursor: default;
}

.clubhouse-pairing-card p {
  margin: 0;
  padding: 7px 9px;
  border-radius: 8px;
  color: var(--scoodle-navy);
  background: var(--scoodle-soft-cream);
  font-size: 0.82rem;
  font-weight: 850;
}

.clubhouse-member-home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.clubhouse-feature-tile {
  min-width: 0;
  min-height: 104px;
  display: grid;
  gap: 5px;
  justify-items: start;
  align-content: center;
  padding: 12px;
  border: 1px solid rgba(200, 164, 77, 0.38);
  border-radius: 12px;
  color: var(--scoodle-text);
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.72), transparent 30%),
    linear-gradient(135deg, #ffffff, var(--scoodle-soft-cream));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.clubhouse-feature-tile.highlight {
  color: #ffffff;
  background: linear-gradient(135deg, var(--scoodle-navy), var(--scoodle-club-green));
}

.clubhouse-feature-tile span {
  width: 36px;
  height: 36px;
}

.clubhouse-feature-tile img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}

.clubhouse-feature-tile strong {
  color: inherit;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.04;
}

.clubhouse-feature-tile small {
  color: currentColor;
  opacity: 0.78;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.2;
}

.clubhouse-coming-list {
  display: grid;
  gap: 10px;
}

.clubhouse-coming-list a,
.clubhouse-coming-list button {
  min-height: 58px;
  display: grid;
  justify-content: stretch;
  gap: 4px;
  padding: 10px 12px;
  color: var(--scoodle-text);
  background: #ffffff;
  border-color: rgba(0, 33, 71, 0.14);
  text-align: left;
}

.clubhouse-coming-list strong {
  color: var(--scoodle-navy);
  font-size: 0.92rem;
}

.clubhouse-coming-list span {
  color: rgba(16, 42, 67, 0.72);
  font-size: 0.76rem;
  font-weight: 750;
}

.clubhouse-profile-button.signed-in img {
  display: none;
}

.clubhouse-profile-button.signed-in.has-photo img {
  width: 38px;
  height: 38px;
  border: 2px solid var(--scoodle-gold);
  border-radius: 999px;
  display: block;
  object-fit: cover;
}

.clubhouse-profile-initials {
  display: none;
}

.clubhouse-profile-button.signed-in .clubhouse-profile-initials {
  width: 36px;
  height: 36px;
  border: 2px solid var(--scoodle-gold);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--scoodle-navy);
  font-size: 0.74rem;
  font-weight: 950;
}

.clubhouse-profile-button.signed-in.has-photo .clubhouse-profile-initials {
  display: none;
}

@media (min-width: 500px) {
  body.clubhouse-page {
    background:
      linear-gradient(90deg, rgba(0, 26, 51, 0.18), rgba(0, 26, 51, 0.02) 34%, rgba(0, 26, 51, 0.02) 66%, rgba(0, 26, 51, 0.18)),
      var(--scoodle-background-image, url("../assets/Ballybunion-background.jpg?v=clubhouse-34")) center center / cover no-repeat fixed,
      #006747;
  }

  .clubhouse-shell {
    margin: 0 auto;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
  }
}

@media (max-width: 560px) {
  .clubhouse-master-card {
    grid-template-columns: 38px minmax(0, 1fr) 10px;
    min-height: 58px;
    column-gap: 8px;
    padding: 6px 7px;
  }

  .clubhouse-master-icon img {
    width: 38px;
    height: 38px;
  }

  .clubhouse-master-copy strong {
    font-size: clamp(0.86rem, 3.45vw, 0.98rem);
    line-height: 1;
  }

  .clubhouse-master-copy small {
    font-size: clamp(0.62rem, 2.45vw, 0.72rem);
    line-height: 1.24;
  }

  .clubhouse-chevron {
    width: 12px;
    height: 12px;
  }

  .clubhouse-around-row {
    grid-template-columns: 44px minmax(0, 1fr) 10px;
    gap: 7px;
    min-height: 46px;
    padding: 5px 8px;
  }

  .clubhouse-around-icon img {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 420px) {
  .clubhouse-shell {
    --clubhouse-gutter: 14px;
  }

  .clubhouse-brand-bar {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    min-height: 66px;
    padding: 6px 12px;
  }

  .clubhouse-brand img {
    width: min(264px, 68vw);
    height: 58px;
  }

  .clubhouse-profile-button {
    width: 36px;
    height: 36px;
  }

  .clubhouse-profile-button img {
    width: 36px;
    height: 36px;
  }

  .clubhouse-hero {
    --clubhouse-hero-message-height: clamp(74px, 18vw, 88px);
    min-height: clamp(282px, 72vw, 318px);
    padding-top: 0;
    padding-bottom: 58px;
  }

  .clubhouse-kicker-row em {
    letter-spacing: 0.1em;
  }

  .clubhouse-hero h1 {
    font-size: clamp(27px, 7.1vw, 31px);
    letter-spacing: 0;
  }

  .clubhouse-hero p {
    font-size: clamp(12px, 3.2vw, 15px);
  }

  .clubhouse-master-grid {
    gap: 10px;
    margin-top: clamp(8px, 1.3dvh, 14px);
  }

  .clubhouse-content {
    gap: clamp(8px, 1.1dvh, 12px);
    padding-bottom: clamp(7px, 1.4dvh, 12px);
  }

  .clubhouse-bottom-nav a,
  .clubhouse-bottom-nav button {
    min-height: clamp(34px, 5.1dvh, 42px);
    font-size: 0.48rem;
  }

  .clubhouse-nav-icon {
    width: clamp(18px, 2.85dvh, 22px);
    height: clamp(18px, 2.85dvh, 22px);
  }

  .clubhouse-dialog.wide {
    width: min(100%, 392px);
  }

  .clubhouse-form-grid,
  .clubhouse-question-grid,
  .clubhouse-verification-grid {
    grid-template-columns: 1fr;
  }

  .clubhouse-name-fields {
    gap: 7px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 68px;
  }

  .clubhouse-member-home-grid {
    gap: 8px;
  }

  .clubhouse-feature-tile {
    min-height: 92px;
    padding: 10px;
  }

}

@media (max-height: 760px) and (max-width: 520px) {
  .clubhouse-brand-bar {
    min-height: clamp(54px, 8.7dvh, 66px);
    padding-block: 4px;
  }

  .clubhouse-brand img {
    height: clamp(48px, 6.6dvh, 58px);
  }

  .clubhouse-profile-button,
  .clubhouse-profile-button img {
    width: clamp(30px, 5.2dvh, 36px);
    height: clamp(30px, 5.2dvh, 36px);
  }

  .clubhouse-hero {
    --clubhouse-hero-message-height: clamp(68px, 11dvh, 82px);
    min-height: clamp(228px, 36dvh, 270px);
    padding-top: 0;
    padding-bottom: clamp(44px, 7dvh, 58px);
  }

  .clubhouse-hero h1 {
    font-size: clamp(24px, 6.65vw, 29px);
  }

  .clubhouse-master-grid {
    margin-top: clamp(7px, 1.2dvh, 12px);
  }

  .clubhouse-around-section {
    gap: 6px;
    padding-top: 7px;
  }

  .clubhouse-around-heading {
    gap: 2px;
  }

  .clubhouse-heading-rule i {
    width: 30px;
    height: 22px;
  }

  .clubhouse-heading-rule img {
    width: 28px;
    height: 28px;
  }

  .clubhouse-around-row {
    min-height: 39px;
  }

  .clubhouse-bottom-nav {
    min-height: 42px;
  }
}

.clubhouse-dialog.member-profile-dialog {
  box-sizing: border-box;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: min(96dvh, 880px);
  max-height: min(96dvh, 880px);
  overflow: hidden;
  width: min(940px, calc(100vw - 24px));
}

.clubhouse-dialog.member-profile-dialog .clubhouse-dialog-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding: 16px 18px 12px;
}

.clubhouse-dialog.member-profile-dialog .clubhouse-dialog-head strong {
  font-size: clamp(1.22rem, 3vw, 1.72rem);
}

.clubhouse-dialog.member-profile-dialog .clubhouse-modal-body {
  min-height: 0;
  overflow: hidden;
  padding: 0;
}

.clubhouse-member-profile {
  box-sizing: border-box;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100%;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.clubhouse-member-profile > .admin-player-profile-tabs {
  background: var(--scoodle-front-primary);
  margin: 0;
  padding: 0 18px;
}

.clubhouse-member-profile .admin-player-profile-body {
  min-height: 0;
}

.clubhouse-member-profile .admin-player-profile-actions button {
  border: 1px solid transparent;
  border-radius: 6px;
  color: #fff;
  background: var(--scoodle-front-primary);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  min-height: 40px;
  padding: 0 16px;
}

.clubhouse-member-profile .admin-player-profile-actions button.secondary {
  border-color: #cad4ce;
  color: var(--scoodle-front-primary);
  background: #fff;
}

.clubhouse-member-profile .admin-profile-upload-button {
  border: 1px solid var(--scoodle-front-primary);
  border-radius: 6px;
  color: #fff;
  background: var(--scoodle-front-primary);
  font-size: 0.74rem;
  font-weight: 900;
  min-height: 38px;
}

.clubhouse-member-profile .clubhouse-profile-photo-preview.admin-profile-photo-shell {
  display: grid;
  height: 108px;
  width: 108px;
}

.clubhouse-member-profile .clubhouse-profile-photo-preview.admin-profile-photo-shell strong {
  align-self: center;
  font-size: 1.12rem;
}

@media (max-width: 700px) {
  .clubhouse-dialog-backdrop {
    box-sizing: border-box;
  }

  .clubhouse-dialog.member-profile-dialog {
    height: min(96dvh, 780px);
    max-height: min(96dvh, 780px);
    max-width: calc(100vw - 36px);
    width: calc(100vw - 36px);
  }

  .clubhouse-dialog.member-profile-dialog,
  .clubhouse-dialog.member-profile-dialog *,
  .clubhouse-member-profile,
  .clubhouse-member-profile * {
    box-sizing: border-box;
    min-width: 0;
  }

  .clubhouse-member-profile .admin-player-profile-body {
    display: block;
    overflow-y: auto;
    padding: 12px;
  }

  .clubhouse-member-profile .admin-player-profile-photo-tools {
    align-items: center;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    margin-bottom: 12px;
  }

  .clubhouse-member-profile .clubhouse-profile-photo-preview.admin-profile-photo-shell {
    grid-row: 1 / span 2;
    height: 64px;
    width: 64px;
  }

  .clubhouse-member-profile .admin-player-profile-content {
    overflow: visible;
  }

  .clubhouse-member-profile .admin-profile-form-grid {
    grid-template-columns: 1fr;
  }

  .clubhouse-member-profile .admin-player-profile-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    padding: 9px 12px;
    width: 100%;
  }

  .clubhouse-member-profile .admin-player-profile-actions > span {
    display: none;
  }

  .clubhouse-member-profile .admin-player-profile-actions.has-status > [data-member-profile-status] {
    align-items: center;
    display: flex;
    grid-column: 1 / -1;
    min-height: 1.25rem;
  }

  .clubhouse-member-profile .admin-player-profile-actions button {
    font-size: 0.72rem;
    overflow: hidden;
    padding-inline: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
  }
}

@media (max-width: 350px) {
  .clubhouse-master-grid {
    grid-template-columns: 1fr;
  }
}


/* clubhouse-photo-view-41 */
.clubhouse-shell {
  transition: opacity 180ms ease;
}

.clubhouse-photo-button {
  grid-column: 1;
  width: 44px;
  min-width: 44px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 1px solid color-mix(in srgb, var(--scoodle-club-green), #ffffff 58%);
  border-radius: 5px;
  background: #ffffff;
  color: var(--scoodle-club-green);
  font: inherit;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.clubhouse-photo-button:hover,
.clubhouse-photo-button:focus-visible {
  border-color: var(--scoodle-gold);
  background: var(--scoodle-soft-cream);
  outline: 2px solid color-mix(in srgb, var(--scoodle-gold), #ffffff 45%);
  outline-offset: 2px;
}

.clubhouse-photo-controls {
  position: fixed;
  left: 50%;
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 10010;
  min-height: 42px;
  padding: 9px 16px;
  border: 2px solid var(--scoodle-gold);
  border-radius: 999px;
  background: rgba(255, 249, 234, 0.96);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
  color: var(--scoodle-deep-navy);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  transform: translateX(-50%);
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.clubhouse-photo-controls[hidden] {
  display: none !important;
}

body.clubhouse-page.clubhouse-photo-mode {
  background: var(--scoodle-background-image, url("../assets/Ballybunion-background.jpg?v=clubhouse-34")) center center / cover no-repeat fixed !important;
}

body.clubhouse-photo-mode .clubhouse-shell {
  opacity: 0;
  pointer-events: none;
  user-select: none;
}

body.clubhouse-photo-mode #clubhouseModalRoot {
  display: none !important;
}

@media (max-width: 499px) {
  body.clubhouse-page.clubhouse-photo-mode {
    background-attachment: scroll !important;
  }

  .clubhouse-photo-button {
    width: 40px;
    min-width: 40px;
    height: 32px;
    font-size: 0.58rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clubhouse-shell {
    transition: none;
  }
}


/* clubhouse-background-rotation-42 */
.clubhouse-photo-controls {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: default;
}

.clubhouse-photo-count {
  min-width: 48px;
  padding: 0 8px;
  border-right: 1px solid color-mix(in srgb, var(--scoodle-club-green), #ffffff 68%);
  border-left: 1px solid color-mix(in srgb, var(--scoodle-club-green), #ffffff 68%);
  color: var(--scoodle-deep-navy);
  font-size: 0.7rem;
  font-weight: 850;
  text-align: center;
  white-space: nowrap;
}

.clubhouse-photo-control {
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--scoodle-club-green), #ffffff 46%);
  border-radius: 999px;
  background: #ffffff;
  color: var(--scoodle-club-green);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.clubhouse-photo-control.clubhouse-photo-arrow {
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-radius: 6px;
  font-size: 1.42rem;
  font-weight: 800;
}

.clubhouse-photo-arrow span {
  display: block;
  line-height: 1;
  transform: translateY(-1px);
}

.clubhouse-photo-control.primary {
  border-color: var(--scoodle-club-green);
  background: var(--scoodle-club-green);
  color: #ffffff;
}

.clubhouse-photo-control:hover,
.clubhouse-photo-control:focus-visible {
  border-color: var(--scoodle-gold);
  outline: 2px solid color-mix(in srgb, var(--scoodle-gold), #ffffff 42%);
  outline-offset: 1px;
}

@media (max-width: 420px) {
  .clubhouse-photo-controls {
    width: calc(100% - 24px);
    justify-content: center;
    padding-inline: 8px;
  }

  .clubhouse-photo-control {
    padding-inline: 9px;
  }

  .clubhouse-photo-control.clubhouse-photo-arrow {
    padding-inline: 0;
  }
}


/* clubhouse-photo-separation-43 */
@media (min-width: 500px) {
  body.clubhouse-page:not(.clubhouse-photo-mode) {
    background:
      linear-gradient(90deg, rgba(0, 26, 51, 0.18), rgba(0, 26, 51, 0.02) 34%, rgba(0, 26, 51, 0.02) 66%, rgba(0, 26, 51, 0.18)),
      var(--scoodle-background-image, url("../assets/Ballybunion-background.jpg?v=clubhouse-43")) center center / cover no-repeat fixed,
      #006747 !important;
  }
}
/* Casual-round guest entry */
.clubhouse-guest-doors button,
.clubhouse-casual-identity-list button {
  min-width: 0;
}

.clubhouse-code-form,
.clubhouse-casual-form {
  display: grid;
  gap: 16px;
}

.clubhouse-code-form > label,
.clubhouse-casual-player,
.clubhouse-casual-player-list {
  display: grid;
  gap: 7px;
}

.clubhouse-code-form label,
.clubhouse-casual-player span {
  color: #173428;
  font-size: .84rem;
  font-weight: 750;
}

.clubhouse-code-form input,
.clubhouse-casual-player input,
.clubhouse-casual-recovery input {
  box-sizing: border-box;
  width: 100%;
  min-height: 46px;
  border: 1px solid #aabbb3;
  border-radius: 6px;
  background: #fff;
  color: #173428;
  font: inherit;
  padding: 10px 12px;
}

.clubhouse-code-form input {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.clubhouse-casual-player-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.clubhouse-casual-player-title {
  margin-bottom: -6px;
  color: var(--scoodle-front-primary, #006747);
  font-size: .9rem;
}

.clubhouse-casual-player > label {
  display: grid;
  gap: 7px;
}

.clubhouse-casual-member-verification {
  color: var(--scoodle-front-primary, #006747);
  font-size: .7rem;
  font-weight: 850;
}

.clubhouse-casual-member-results {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.clubhouse-casual-member-results[hidden],
.clubhouse-casual-member-verification[hidden] {
  display: none;
}

.clubhouse-casual-member-results > small {
  color: #52675d;
  font-size: .67rem;
  line-height: 1.2;
}

.clubhouse-casual-member-results button {
  min-width: 0;
  min-height: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  border: 1px solid color-mix(in srgb, var(--scoodle-front-primary, #006747) 42%, #fff);
  border-radius: 5px;
  background: color-mix(in srgb, var(--scoodle-front-primary, #006747) 6%, #fff);
  color: #173428;
  padding: 6px 8px;
  text-align: left;
}

.clubhouse-casual-member-results button strong,
.clubhouse-casual-member-results button span {
  min-width: 0;
  font-size: .69rem;
  line-height: 1.15;
}

.clubhouse-casual-member-results button span {
  color: var(--scoodle-front-primary, #006747);
  font-weight: 850;
  white-space: nowrap;
}

.clubhouse-inline-add {
  justify-self: start;
  border: 0;
  background: transparent;
  color: #006747;
  font-weight: 800;
  padding: 4px 0;
}

.clubhouse-casual-recovery,
.clubhouse-casual-recovery-ready {
  min-width: 0;
  display: grid;
  gap: 7px;
  padding: 10px 11px;
  border: 1px solid color-mix(in srgb, var(--scoodle-front-primary) 42%, #ffffff);
  border-radius: 8px;
  background: color-mix(in srgb, var(--scoodle-front-primary) 7%, #ffffff);
  color: #173428;
}

.clubhouse-casual-recovery > strong,
.clubhouse-casual-recovery-ready > strong {
  color: var(--scoodle-front-primary);
  font-size: 0.86rem;
}

.clubhouse-casual-recovery p,
.clubhouse-casual-recovery-ready p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.28;
}

.clubhouse-casual-recovery-ready .clubhouse-casual-recovery-status {
  padding-top: 6px;
  border-top: 1px solid color-mix(in srgb, var(--scoodle-front-primary) 24%, #ffffff);
  color: var(--scoodle-front-primary);
  font-weight: 850;
}

.clubhouse-casual-recovery-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.clubhouse-casual-recovery-actions [data-clubhouse-action="open-casual-scorecard"] {
  grid-column: 1 / -1;
}

.clubhouse-casual-recovery label {
  display: grid;
  gap: 5px;
}

.clubhouse-casual-recovery label > span {
  font-size: 0.72rem;
  font-weight: 850;
}

@media (max-width: 520px) {
  .clubhouse-casual-form {
    gap: 10px;
  }

  .clubhouse-casual-form .clubhouse-casual-player-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .clubhouse-casual-player input,
  .clubhouse-casual-recovery input {
    min-height: 40px;
    padding-block: 7px;
  }
}

.clubhouse-casual-identity-list button {
  display: grid;
  gap: 2px;
  text-align: left;
}

.clubhouse-casual-identity-list button span {
  font-size: .78rem;
  font-weight: 500;
}

@media (max-width: 520px) {
  .clubhouse-casual-player-list {
    grid-template-columns: 1fr;
  }
}

/* Membership selection and welcome panel */
.clubhouse-membership-picker {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.clubhouse-membership-picker legend {
  margin-bottom: 7px;
  color: var(--scoodle-navy);
  font-size: 0.78rem;
  font-weight: 950;
}

.clubhouse-membership-picker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.clubhouse-member-form .clubhouse-membership-choice {
  min-width: 0;
  min-height: 88px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 7px;
  padding: 10px;
  border: 1px solid rgba(0, 33, 71, 0.18);
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
}

.clubhouse-member-form .clubhouse-membership-choice.selected {
  border-color: var(--scoodle-claim-primary);
  box-shadow: inset 0 0 0 1px var(--scoodle-claim-primary);
  background: var(--scoodle-claim-selected);
}

.clubhouse-member-form .clubhouse-membership-choice input {
  width: 17px;
  height: 17px;
  min-height: 17px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--scoodle-claim-primary);
}

.clubhouse-membership-choice > span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.clubhouse-membership-choice strong {
  color: var(--scoodle-navy);
  font-size: 0.82rem;
  line-height: 1.1;
}

.clubhouse-membership-choice small,
.clubhouse-membership-choice em {
  color: rgba(16, 42, 67, 0.76);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 750;
  line-height: 1.18;
}

.clubhouse-membership-summary {
  display: grid;
  gap: 0;
  margin: 0;
}

.clubhouse-membership-summary > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 33, 71, 0.12);
}

.clubhouse-membership-summary > div:last-child {
  border-bottom: 0;
}

.clubhouse-membership-summary dt,
.clubhouse-membership-summary dd {
  margin: 0;
}

.clubhouse-membership-summary dt {
  color: rgba(16, 42, 67, 0.68);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.clubhouse-membership-summary dd {
  color: var(--scoodle-navy);
  font-size: 0.9rem;
  font-weight: 950;
}

.clubhouse-director-key {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 4px;
}

.clubhouse-membership-upgrades {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(200, 164, 77, 0.45);
  border-radius: 12px;
  background: var(--scoodle-soft-cream);
}

.clubhouse-membership-upgrades > header,
.clubhouse-membership-upgrades article > span {
  display: grid;
  gap: 2px;
}

.clubhouse-membership-upgrades > header strong,
.clubhouse-membership-upgrades article strong {
  color: var(--scoodle-navy);
}

.clubhouse-membership-upgrades > header span,
.clubhouse-membership-upgrades article small,
.clubhouse-upgrade-confirm p {
  margin: 0;
  color: rgba(16, 42, 67, 0.72);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.25;
}

.clubhouse-membership-upgrades article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 33, 71, 0.12);
}

.clubhouse-membership-upgrades article button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--scoodle-navy);
  border-radius: 8px;
  color: var(--scoodle-navy);
  background: #ffffff;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 950;
  cursor: pointer;
}

.clubhouse-dialog-actions.member-success-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 4px;
  border: 1px solid rgba(0, 33, 71, 0.16);
  border-radius: 10px;
  background: #ffffff;
}

.clubhouse-dialog-actions.member-success-actions a,
.clubhouse-dialog-actions.member-success-actions button {
  border: 0;
  border-radius: 7px;
  color: var(--scoodle-navy);
  background: #ffffff;
  text-align: center;
}

.clubhouse-dialog-actions.member-success-actions > * + * {
  border-left: 1px solid rgba(0, 33, 71, 0.13);
}

@media (max-width: 440px) {
  .clubhouse-membership-picker-grid {
    grid-template-columns: 1fr;
  }

  .clubhouse-member-form .clubhouse-membership-choice {
    min-height: 64px;
  }

  .clubhouse-dialog-actions.member-success-actions {
    grid-template-columns: 1fr;
  }

  .clubhouse-dialog-actions.member-success-actions > * + * {
    border-top: 1px solid rgba(0, 33, 71, 0.13);
    border-left: 0;
  }
}

/* Keep the initial membership signup fully visible on a phone. */
.clubhouse-dialog.member-join-dialog {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  max-height: calc(100dvh - 16px);
  overflow: hidden;
}

.clubhouse-dialog.member-join-dialog .clubhouse-modal-body {
  min-height: 0;
  overflow-y: auto;
}

.clubhouse-claim-summary {
  display: grid;
  justify-items: center;
  gap: 4px;
  border: 1px solid rgba(0, 103, 71, 0.24);
  border-radius: 9px;
  background: rgba(0, 103, 71, 0.06);
  padding: 10px;
  color: #173428;
  text-align: center;
}

.clubhouse-claim-summary strong {
  color: #006747;
  font-size: 1rem;
}

.clubhouse-claim-summary span {
  font-size: .72rem;
  line-height: 1.2;
}

.clubhouse-claim-summary small {
  color: #52675d;
  font-size: .63rem;
  line-height: 1.2;
}

.clubhouse-claim-name-field {
  grid-column: 1 / -1;
}

@media (max-width: 520px) {
  .clubhouse-dialog-backdrop:has(.member-join-dialog) {
    padding: 8px;
  }

  .clubhouse-dialog.member-join-dialog {
    width: min(100%, 410px);
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-dialog-head {
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 7px;
    padding: 9px 10px;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-dialog-head strong {
    font-size: 1rem;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-dialog-head > div > span {
    margin-top: 2px;
    font-size: 0.66rem;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-dialog-head button {
    width: 30px;
    height: 30px;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-modal-body {
    gap: 7px;
    padding: 8px 10px 10px;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-join-form {
    gap: 7px;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 7px;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-name-fields {
    gap: 6px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 64px;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-member-form label {
    gap: 2px;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-member-form label > span {
    font-size: 0.64rem;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-member-form input,
  .clubhouse-dialog.member-join-dialog .clubhouse-member-form select {
    min-height: 34px;
    padding-inline: 7px;
    font-size: 0.72rem;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-membership-picker legend {
    margin-bottom: 4px;
    font-size: 0.68rem;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-membership-picker-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-membership-choice {
    min-height: 58px;
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 4px;
    padding: 5px;
    border-radius: 7px;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-membership-choice input {
    width: 14px;
    height: 14px;
    min-height: 14px;
    margin-top: 1px;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-membership-choice > span {
    gap: 2px;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-membership-choice strong {
    font-size: 0.66rem;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-membership-choice small,
  .clubhouse-dialog.member-join-dialog .clubhouse-membership-choice em {
    font-size: 0.52rem;
    line-height: 1.08;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-check-row {
    grid-template-columns: 18px minmax(0, 1fr);
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-check-row input {
    width: 15px;
    height: 15px;
    min-height: 15px;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-check-row > span {
    font-size: 0.68rem;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-security-note {
    padding: 5px 7px;
    font-size: 0.58rem;
    line-height: 1.15;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-dialog-actions {
    gap: 6px;
  }

  .clubhouse-dialog.member-join-dialog .clubhouse-dialog-actions button {
    min-height: 34px;
    font-size: 0.7rem;
  }
}


/* clubhouse-guest-entry-51 */
.clubhouse-master-grid.guest-access-grid {
  gap: 12px;
}

.guest-access-grid .clubhouse-master-card {
  min-height: 72px;
  grid-template-columns: 50px minmax(0, 1fr) 14px;
  column-gap: 10px;
  padding: 9px 11px;
  border-color: rgba(200, 164, 77, 0.72);
}

.guest-access-grid .clubhouse-master-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.guest-access-grid .clubhouse-master-copy strong {
  font-size: clamp(0.96rem, 3.4vw, 1.1rem);
}

.clubhouse-experience-section {
  display: grid;
  gap: 9px;
  width: 100%;
  min-width: 0;
  margin-top: auto;
  padding-top: clamp(8px, 1.1dvh, 14px);
}

.clubhouse-experience-heading {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: var(--scoodle-gold);
  text-align: center;
}

.clubhouse-experience-heading h2 {
  margin: 0;
  color: var(--scoodle-cream);
  font-family: inherit;
  font-size: clamp(1rem, 3.4vw, 1.3rem);
  font-weight: 650;
  line-height: 1.05;
}

.clubhouse-experience-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.65rem, 2.2vw, 0.78rem);
  font-weight: 650;
  line-height: 1.2;
}

.clubhouse-experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.clubhouse-experience-card {
  min-width: 0;
  min-height: 70px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  border: 1px solid rgba(200, 164, 77, 0.54);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 12px rgba(0, 33, 25, 0.12);
}

.clubhouse-experience-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}

.clubhouse-experience-icon img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}

.clubhouse-experience-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.clubhouse-experience-copy strong {
  color: var(--scoodle-dark-green);
  font-size: clamp(0.68rem, 2.25vw, 0.78rem);
  font-weight: 850;
  line-height: 1.08;
}

.clubhouse-experience-copy small {
  color: rgba(16, 42, 67, 0.78);
  font-size: clamp(0.55rem, 1.8vw, 0.64rem);
  font-weight: 650;
  line-height: 1.2;
}

.clubhouse-bottom-nav.guest-join-nav {
  min-height: 48px;
  display: block;
  padding: 0;
  border-top: 4px solid var(--scoodle-claim-accent);
  background: var(--scoodle-claim-primary);
}

.clubhouse-bottom-nav.guest-casual-nav {
  min-height: 48px;
  grid-template-columns: minmax(108px, 0.8fr) minmax(0, 1.6fr);
  padding: 0;
  background: #ffffff;
}

.clubhouse-bottom-nav.guest-casual-nav > a {
  min-height: 48px;
}

.clubhouse-bottom-nav.guest-casual-nav .clubhouse-join-club {
  min-height: 48px;
}

.clubhouse-bottom-nav .clubhouse-join-club {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background: var(--scoodle-claim-primary);
  font-family: inherit;
  font-size: clamp(0.9rem, 3vw, 1.08rem);
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 420px) {
  .guest-access-grid .clubhouse-master-card {
    min-height: 66px;
    grid-template-columns: 44px minmax(0, 1fr) 12px;
    padding: 7px 8px;
  }

  .guest-access-grid .clubhouse-master-icon img {
    width: 42px;
    height: 42px;
  }

  .clubhouse-experience-card {
    min-height: 64px;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 7px;
    padding: 7px;
  }

  .clubhouse-experience-icon,
  .clubhouse-experience-icon img {
    width: 31px;
    height: 31px;
  }
}


/* membership-description-52 */
.clubhouse-membership-choice .clubhouse-membership-description {
  color: rgba(16, 42, 67, 0.86);
  font-size: 0.66rem;
  font-weight: 650;
  line-height: 1.24;
}


/* clubhouse-promo-53 */
.clubhouse-experience-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.clubhouse-experience-card {
  min-height: 92px;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  padding: 12px 13px;
}

.clubhouse-experience-icon {
  width: 48px;
  height: 48px;
  align-self: center;
}

.clubhouse-experience-icon img {
  width: 44px;
  height: 44px;
}

.clubhouse-experience-copy {
  gap: 3px;
  align-content: center;
}

.clubhouse-experience-copy strong {
  color: var(--scoodle-dark-green);
  font-family: inherit;
  font-size: clamp(0.88rem, 3vw, 1rem);
  line-height: 1.08;
}

.clubhouse-experience-copy em {
  color: var(--scoodle-navy);
  font-size: clamp(0.69rem, 2.35vw, 0.78rem);
  font-style: normal;
  font-weight: 850;
  line-height: 1.18;
}

.clubhouse-experience-copy small {
  color: rgba(16, 42, 67, 0.78);
  font-size: clamp(0.63rem, 2.1vw, 0.72rem);
  font-weight: 600;
  line-height: 1.28;
}

.clubhouse-experience-tagline {
  margin: 1px 0 4px;
  padding: 10px 12px;
  border-top: 1px solid rgba(200, 164, 77, 0.74);
  border-bottom: 1px solid rgba(200, 164, 77, 0.74);
  color: var(--scoodle-cream);
  font-family: inherit;
  font-size: clamp(0.84rem, 2.8vw, 0.98rem);
  font-weight: 700;
  line-height: 1.22;
  text-align: center;
}

@media (max-width: 420px) {
  .clubhouse-experience-card {
    min-height: 88px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 9px;
    padding: 10px;
  }

  .clubhouse-experience-icon,
  .clubhouse-experience-icon img {
    width: 40px;
    height: 40px;
  }
}


/* clubhouse-promo-layout-55 */
.clubhouse-hero + .guest-access-grid {
  margin-top: -8px;
}

.clubhouse-experience-section {
  margin-top: 0;
  padding-top: 2px;
}

.clubhouse-experience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.clubhouse-experience-card {
  min-height: 86px;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 8px;
  padding: 9px;
}

.clubhouse-experience-icon,
.clubhouse-experience-icon img {
  width: 36px;
  height: 36px;
}

.clubhouse-experience-copy strong {
  font-size: clamp(0.72rem, 2.3vw, 0.88rem);
}

.clubhouse-experience-copy em {
  font-size: clamp(0.61rem, 1.95vw, 0.73rem);
  line-height: 1.14;
}

.clubhouse-experience-copy small {
  font-size: clamp(0.56rem, 1.75vw, 0.68rem);
  line-height: 1.18;
}

.clubhouse-experience-tagline span {
  display: block;
}

@media (max-width: 420px) {
  .clubhouse-content {
    gap: 5px;
  }

  .clubhouse-hero {
    min-height: 250px;
  }

  .clubhouse-experience-section {
    gap: 4px;
    padding-top: 0;
  }

  .clubhouse-experience-heading {
    gap: 2px;
  }

  .clubhouse-experience-heading p {
    display: none;
  }

  .clubhouse-experience-heading .clubhouse-heading-rule i {
    width: 28px;
    height: 20px;
  }

  .clubhouse-experience-heading .clubhouse-heading-rule img {
    width: 26px;
    height: 26px;
  }

  .clubhouse-experience-grid {
    gap: 6px;
  }

  .clubhouse-experience-card {
    min-height: 80px;
    grid-template-columns: 29px minmax(0, 1fr);
    gap: 5px;
    padding: 6px;
  }

  .clubhouse-experience-icon,
  .clubhouse-experience-icon img {
    width: 28px;
    height: 28px;
  }

  .clubhouse-experience-copy {
    gap: 2px;
  }

  .clubhouse-experience-copy strong {
    font-size: 0.7rem;
  }

  .clubhouse-experience-copy em {
    font-size: 0.58rem;
    line-height: 1.12;
  }

  .clubhouse-experience-copy small {
    font-size: 0.54rem;
    line-height: 1.14;
  }

  .clubhouse-experience-tagline {
    margin: 0;
    padding: 4px 8px;
    font-size: 0.72rem;
    line-height: 1.15;
  }
}


/* clubhouse-promo-desktop-56 */
.clubhouse-hero {
  min-height: clamp(250px, 45vw, 300px);
}

.clubhouse-experience-heading p {
  display: none;
}

.clubhouse-experience-heading .clubhouse-heading-rule i {
  width: 28px;
  height: 20px;
}

.clubhouse-experience-heading .clubhouse-heading-rule img {
  width: 26px;
  height: 26px;
}

.clubhouse-experience-card {
  min-height: 82px;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 6px;
  padding: 7px;
}

.clubhouse-experience-icon,
.clubhouse-experience-icon img {
  width: 30px;
  height: 30px;
}

.clubhouse-experience-copy strong {
  font-size: 0.72rem;
}

.clubhouse-experience-copy em {
  font-size: 0.6rem;
  line-height: 1.12;
}

.clubhouse-experience-copy small {
  font-size: 0.56rem;
  line-height: 1.14;
}

.clubhouse-experience-tagline {
  margin: 0;
  padding: 5px 8px;
  font-size: 0.76rem;
  line-height: 1.15;
}


/* clubhouse-promo-mobile-57 */
@media (max-width: 420px) {
  .clubhouse-experience-card {
    min-height: 80px;
    grid-template-columns: 29px minmax(0, 1fr);
    gap: 5px;
    padding: 6px;
  }

  .clubhouse-experience-icon,
  .clubhouse-experience-icon img {
    width: 28px;
    height: 28px;
  }

  .clubhouse-experience-copy strong {
    font-size: 0.7rem;
  }

  .clubhouse-experience-copy em {
    font-size: 0.58rem;
    line-height: 1.12;
  }

  .clubhouse-experience-copy small {
    font-size: 0.54rem;
    line-height: 1.14;
  }

  .clubhouse-experience-tagline {
    margin: 0;
    padding: 4px 8px;
    font-size: 0.72rem;
    line-height: 1.15;
  }
}


/* member-score-history-grid-1 */
.clubhouse-dialog.member-profile-dialog {
  width: min(1180px, calc(100vw - 24px));
}

.clubhouse-member-profile:has([data-member-profile-panel="scores"].active) .admin-player-profile-photo-tools {
  display: none;
}

.clubhouse-member-profile:has([data-member-profile-panel="scores"].active) .admin-player-profile-body {
  display: block;
}

.member-score-grid-wrap {
  border: 1px solid color-mix(in srgb, var(--scoodle-front-primary) 36%, #fff);
  border-radius: 6px;
  max-width: 100%;
  overflow: auto;
}

.member-score-grid {
  border-collapse: collapse;
  color: #17251e;
  font-size: 0.7rem;
  min-width: 1080px;
  table-layout: fixed;
  width: 100%;
}

.member-score-grid th,
.member-score-grid td {
  border-bottom: 1px solid #d9e0dc;
  border-right: 1px solid #e2e7e4;
  padding: 8px 7px;
  text-align: left;
  vertical-align: middle;
}

.member-score-grid th:last-child,
.member-score-grid td:last-child {
  border-right: 0;
}

.member-score-grid tbody tr:last-child td {
  border-bottom: 0;
}

.member-score-grid thead th {
  background: var(--scoodle-front-primary);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.member-score-grid thead th span,
.member-score-grid thead th small {
  display: block;
}

.member-score-grid thead th small {
  font-size: 0.55rem;
  font-weight: 700;
  margin-top: 2px;
  text-transform: none;
}

.member-score-grid th:nth-child(1) { width: 120px; }
.member-score-grid th:nth-child(2) { width: 118px; }
.member-score-grid th:nth-child(3) { width: 170px; }
.member-score-grid th:nth-child(4) { width: 58px; }
.member-score-grid th:nth-child(5) { width: 52px; }
.member-score-grid th:nth-child(6) { width: 138px; }
.member-score-grid th:nth-child(7) { width: 112px; }
.member-score-grid th:nth-child(8) { width: 260px; }
.member-score-grid th:nth-child(9) { width: 62px; }

.member-score-grid tbody tr:nth-child(even) td {
  background: color-mix(in srgb, var(--scoodle-front-primary) 4%, #fff);
}

.member-score-date,
.member-score-course {
  display: table-cell;
}

.member-score-date strong,
.member-score-date small,
.member-score-course strong,
.member-score-course small {
  display: block;
}

.member-score-date strong,
.member-score-course strong {
  color: #162b21;
  font-size: 0.7rem;
}

.member-score-date small,
.member-score-course small {
  color: #68766f;
  font-size: 0.61rem;
  margin-top: 3px;
}

.member-score-number {
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center !important;
}

.member-score-total {
  align-items: center;
  display: grid;
  gap: 3px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: center;
}

.member-score-total span,
.member-score-total strong {
  border-right: 1px solid #d5ddd8;
  font-size: 0.78rem;
  line-height: 1;
  padding: 3px 0;
}

.member-score-total strong {
  border-right: 0;
  color: var(--scoodle-front-primary);
  font-size: 0.92rem;
}

.member-score-event-link {
  color: var(--scoodle-front-primary);
  display: inline-block;
  font-weight: 900;
  line-height: 1.25;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.member-score-card-links {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.member-score-card-links a,
.member-score-card-links button {
  align-items: center;
  background: #fff;
  border: 1px solid var(--scoodle-front-primary);
  border-radius: 4px;
  color: var(--scoodle-front-primary);
  display: flex;
  font: inherit;
  font-size: 0.63rem;
  font-weight: 900;
  justify-content: center;
  min-height: 30px;
  padding: 4px;
  text-align: center;
  text-decoration: none;
}

.member-score-card-links button {
  background: var(--scoodle-front-primary);
  color: #fff;
}

.member-score-analysis {
  display: grid;
  gap: 5px;
}

.member-score-analysis > div {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.member-score-analysis > div:first-child {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.member-score-analysis span {
  background: #fff;
  border: 1px solid #d6ded9;
  border-radius: 3px;
  display: grid;
  padding: 3px;
  text-align: center;
}

.member-score-analysis small {
  color: #6a756f;
  font-size: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.member-score-analysis strong {
  color: #13261c;
  font-size: 0.67rem;
}

.member-score-grid .admin-profile-record-remove {
  border: 1px solid #b83232;
  border-radius: 4px;
  color: #a52222;
  font-size: 0.58rem;
  min-height: 28px;
  padding: 4px;
}

.member-my-card-gate {
  align-items: center;
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 34px 20px;
  text-align: center;
}

.member-my-card-gate strong {
  color: var(--scoodle-front-primary);
  font-size: 1.18rem;
}

.member-my-card-gate span {
  color: #5e6c65;
  max-width: 480px;
}

.member-my-card {
  background: #fff;
  color: #111;
  display: grid;
  gap: 16px;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100%;
  min-height: 0;
}

.clubhouse-dialog.member-my-card-dialog .clubhouse-modal-body {
  overflow: hidden;
}

.member-my-card > header {
  align-items: end;
  border-bottom: 3px solid #111;
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.member-my-card-body {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.member-my-card > header > div {
  display: grid;
  gap: 2px;
}

.member-my-card > header > div:last-child {
  text-align: right;
}

.member-my-card > header strong {
  color: #111;
  font-size: 1.08rem;
}

.member-my-card > header > div:last-child strong {
  font-size: 1.65rem;
}

.member-my-card > header span {
  color: #333;
  font-size: 0.72rem;
}

.member-my-card-tables {
  display: grid;
  gap: 12px;
  max-width: 100%;
  overflow-x: auto;
}

.member-my-card-nine {
  border-collapse: collapse;
  min-width: 720px;
  table-layout: fixed;
  width: 100%;
}

.member-my-card-nine th,
.member-my-card-nine td {
  border: 1px solid #111;
  height: 34px;
  padding: 3px;
  text-align: center;
}

.member-my-card-nine th {
  background: #111;
  color: #fff;
  font-size: 0.67rem;
  font-weight: 900;
}

.member-my-card-nine tbody th {
  width: 58px;
}

.member-my-card-nine td {
  background: #fff;
  color: #111;
  font-size: 0.72rem;
}

.member-my-card-score {
  align-items: center;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  min-width: 24px;
}

.member-my-card-score.birdie {
  border: 2px solid #111;
  border-radius: 50%;
}

.member-my-card-score.eagle {
  border: 4px double #111;
  border-radius: 50%;
}

.member-my-card-score.bogey {
  border: 2px solid #111;
}

.member-my-card-score.double-bogey {
  border: 4px double #111;
}

.member-my-card-score sup {
  font-size: 0.5rem;
  margin-left: 1px;
}

.member-my-card-analysis {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.member-my-card-analysis > div {
  border-top: 2px solid #111;
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 8px;
}

.member-my-card-analysis > div:first-child {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.member-my-card-analysis h3 {
  font-size: 0.72rem;
  grid-column: 1 / -1;
  margin: 0;
  text-transform: uppercase;
}

.member-my-card-analysis span {
  display: grid;
  text-align: center;
}

.member-my-card-analysis small,
.member-my-card-analysis em {
  color: #555;
  font-size: 0.58rem;
  font-style: normal;
}

.member-my-card-analysis strong {
  color: #111;
  font-size: 0.92rem;
}

.member-my-card > footer {
  align-items: center;
  border-top: 1px solid #a8a8a8;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding-top: 12px;
}

.member-my-card > footer button,
.member-my-card > footer a {
  background: #fff;
  border: 1px solid var(--scoodle-front-primary);
  border-radius: 5px;
  color: var(--scoodle-front-primary);
  font-size: 0.72rem;
  font-weight: 900;
  min-height: 38px;
  padding: 9px 14px;
  text-decoration: none;
}

.member-my-card > footer a {
  background: var(--scoodle-front-primary);
  color: #fff;
}

@media (max-width: 700px) {
  .clubhouse-dialog.member-profile-dialog {
    max-width: calc(100vw - 24px);
    width: calc(100vw - 24px);
  }

  .clubhouse-member-profile:has([data-member-profile-panel="scores"].active) .admin-player-profile-body {
    overflow-y: auto;
  }

  .member-score-grid {
    font-size: 0.66rem;
  }

  .member-my-card > header {
    align-items: start;
    display: grid;
    gap: 8px;
  }

  .member-my-card > header > div:last-child {
    text-align: left;
  }

  .member-my-card-analysis {
    grid-template-columns: 1fr;
  }

  .member-my-card > footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-my-card > footer button,
  .member-my-card > footer a {
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
  }
}

/* member-score-history-grid-2 */
.member-score-toolbar {
  align-items: end;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 8px;
}

.member-score-toolbar .admin-profile-score-summary {
  margin: 0;
}

.member-score-toolbar-actions {
  display: flex;
  gap: 6px;
}

.member-score-toolbar-actions button {
  background: var(--scoodle-front-primary);
  border: 1px solid var(--scoodle-front-primary);
  border-radius: 4px;
  color: #fff;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 900;
  min-height: 31px;
  padding: 5px 10px;
}

.member-score-toolbar-actions button.secondary {
  background: #fff;
  color: var(--scoodle-front-primary);
}

.member-score-grid {
  font-size: 0.66rem;
  min-width: 850px;
}

.member-score-grid th,
.member-score-grid td {
  padding: 5px 5px;
}

.member-score-grid thead th {
  font-size: 0.62rem;
  white-space: nowrap;
}

.member-score-grid th:nth-child(1) { width: 86px; }
.member-score-grid th:nth-child(2) { width: 88px; }
.member-score-grid th:nth-child(3) { width: 142px; }
.member-score-grid th:nth-child(4) { width: 104px; }
.member-score-grid th:nth-child(5) { width: 56px; }
.member-score-grid th:nth-child(6) { width: 52px; }
.member-score-grid th:nth-child(7) { width: 138px; }
.member-score-grid th:nth-child(8) { width: 116px; }
.member-score-grid th:nth-child(9) { width: 58px; }

.member-score-date strong,
.member-score-compact-total {
  font-size: 0.7rem;
  font-weight: 900;
  white-space: nowrap;
}

.member-score-course strong {
  font-size: 0.67rem;
}

.member-score-course small {
  margin-top: 1px;
}

.member-score-tee {
  font-size: 0.63rem;
  line-height: 1.15;
}

.member-score-card-links a,
.member-score-card-links button,
.member-score-card-links span {
  align-items: center;
  background: #fff;
  border: 1px solid var(--scoodle-front-primary);
  border-radius: 3px;
  color: var(--scoodle-front-primary);
  display: flex;
  font: inherit;
  font-size: 0.6rem;
  font-weight: 900;
  justify-content: center;
  min-height: 26px;
  padding: 3px;
  text-align: center;
  text-decoration: none;
}

.member-score-card-links button {
  background: var(--scoodle-front-primary);
  color: #fff;
}

.member-score-card-links span {
  border-color: #cfd7d2;
  color: #7c8781;
}

.member-score-grid .admin-profile-record-remove {
  min-height: 25px;
}

.member-my-card {
  gap: 9px;
}

.member-my-card > header {
  align-items: center;
  min-width: 0;
  padding-bottom: 6px;
}

.member-my-card > header > div:last-child strong {
  font-size: 1.08rem;
}

.member-my-card-tables {
  gap: 7px;
  overflow: visible;
  width: 100%;
}

.member-my-card-nine {
  min-width: 0;
  width: 100%;
}

.member-my-card-nine th,
.member-my-card-nine td {
  height: 27px;
  padding: 1px;
}

.member-my-card-nine th {
  font-size: 0.59rem;
}

.member-my-card-nine th:first-child,
.member-my-card-nine tbody th {
  width: 42px;
}

.member-my-card-nine td {
  font-size: 0.65rem;
}

.member-my-card-score {
  font-size: 0.69rem;
  height: 20px;
  min-width: 20px;
}

.member-my-card-score.eagle,
.member-my-card-score.double-bogey {
  border-width: 3px;
}

.member-my-card-hole-stats {
  font-size: 0.55rem !important;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.member-my-card-total-stack {
  border: 1px solid #111;
  display: grid;
  margin-left: auto;
  width: 118px;
}

.member-my-card-total-stack div {
  align-items: center;
  border-bottom: 1px solid #111;
  display: grid;
  grid-template-columns: 1fr 40px;
  min-height: 24px;
}

.member-my-card-total-stack div:last-child {
  background: #111;
  border-bottom: 0;
  color: #fff;
}

.member-my-card-total-stack span,
.member-my-card-total-stack strong {
  font-size: 0.64rem;
  padding: 3px 5px;
}

.member-my-card-total-stack strong {
  border-left: 1px solid currentColor;
  text-align: center;
}

.member-my-card-summary-only {
  border: 1px solid #111;
  font-size: 0.7rem;
  padding: 12px;
  text-align: center;
}

.member-add-score-form {
  display: grid;
  gap: 10px;
}

.member-add-score-grid {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.member-add-score-grid label {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.member-add-score-grid label > span {
  color: #173126;
  font-size: 0.7rem;
  font-weight: 900;
}

.member-add-score-grid input,
.member-add-score-grid select {
  border: 1px solid #aab8b0;
  border-radius: 4px;
  box-sizing: border-box;
  font: inherit;
  min-height: 38px;
  min-width: 0;
  padding: 7px 8px;
  width: 100%;
}

.member-add-score-grid .wide-field {
  grid-column: span 2;
}

.member-score-entry-choice {
  align-items: center;
  border: 1px solid rgba(0, 33, 71, 0.14);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 9px 12px;
}

.member-score-entry-choice legend {
  color: #173126;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0 5px;
}

.member-score-entry-choice label,
.member-score-stats-choice {
  align-items: center;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 800;
  gap: 6px;
}

.member-score-hole-section,
.member-score-stats-section {
  display: grid;
  gap: 8px;
}

.member-score-hole-section[hidden],
.member-score-stats-section[hidden],
.member-score-total-section[hidden] {
  display: none;
}

.member-score-hole-section header,
.member-score-stats-section header {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
}

.member-score-hole-section header span,
.member-score-stats-section header span {
  font-size: 0.68rem;
}

.member-score-hole-grid {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.member-score-hole {
  display: grid;
  gap: 3px;
  text-align: center;
}

.member-score-hole > span {
  display: grid;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
}

.member-score-hole small {
  font-size: 0.48rem;
  font-weight: 700;
  min-height: 0.5rem;
}

.member-score-hole input {
  border: 1px solid #9cadb7;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 1rem;
  font-weight: 850;
  height: 38px;
  min-width: 0;
  padding: 2px;
  text-align: center;
  width: 100%;
}

.member-score-total-section {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.member-score-total-section label {
  display: grid;
  font-size: 0.72rem;
  font-weight: 900;
  gap: 4px;
}

.member-score-total-section input {
  min-height: 40px;
}

.member-score-fairway-grid {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.member-fairway-hole {
  align-items: center;
  background: #eef3f0;
  border-radius: 5px;
  display: grid;
  font-size: 0.68rem;
  font-weight: 850;
  justify-items: center;
  min-height: 42px;
}

.member-fairway-hole input {
  height: 18px;
  width: 18px;
}

.admin-profile-result-row a {
  color: var(--scoodle-front-primary);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 700px) {
  .member-score-toolbar {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .member-score-toolbar-actions {
    justify-content: flex-end;
  }

  .member-my-card-nine th,
  .member-my-card-nine td {
    font-size: 0.53rem;
    height: 25px;
  }

  .member-my-card-nine th:first-child,
  .member-my-card-nine tbody th {
    width: 36px;
  }

  .member-my-card-score {
    font-size: 0.6rem;
    height: 18px;
    min-width: 18px;
  }

  .member-my-card-hole-stats {
    font-size: 0.47rem !important;
  }

  .member-my-card-analysis {
    gap: 8px;
  }

  .member-add-score-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-score-hole-grid,
  .member-score-fairway-grid {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
}
/* member-score-history-grid-3 */
.member-score-toolbar {
  align-items: center;
  display: grid;
  gap: 7px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.member-score-filter-row {
  align-items: end;
  display: grid;
  gap: 6px;
  grid-template-columns: 250px 108px minmax(122px, 156px);
  min-width: 0;
}

.member-score-filter-row label {
  display: grid;
  gap: 3px;
  margin: 0;
  min-width: 0;
}

.member-score-filter-row label > span {
  color: var(--scoodle-front-ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
}

.member-score-filter-row input,
.member-score-filter-row select {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--scoodle-front-primary), #ffffff 48%);
  border-radius: 4px;
  box-sizing: border-box;
  color: var(--scoodle-front-ink);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  height: 32px;
  min-width: 0;
  padding: 4px 7px;
  width: 100%;
}

.member-score-under {
  align-content: start;
}

.member-score-toolbar-actions {
  align-items: center;
  align-self: center;
}

.member-score-toolbar-actions button {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  height: 32px;
  justify-content: center;
  line-height: 1;
  min-height: 32px;
  padding-block: 0;
}

.member-score-source-summary {
  margin-block: 7px;
}

.member-score-source-summary strong {
  font-size: 1rem;
}

.member-score-grid {
  font-size: 0.65rem;
  min-width: 920px;
}

.member-score-grid th,
.member-score-grid td,
.member-score-grid td strong,
.member-score-grid td a,
.member-score-grid td button,
.member-score-date,
.member-score-compact-total,
.member-score-course {
  font-weight: 500;
}

.member-score-grid th {
  font-weight: 750;
}

.member-score-grid th,
.member-score-grid td {
  line-height: 1.12;
  padding: 3px 4px;
}

.member-score-grid th:nth-child(1) { width: 148px; }
.member-score-grid th:nth-child(2) { width: 82px; }
.member-score-grid th:nth-child(3) { width: 42px; }
.member-score-grid th:nth-child(4) { width: 148px; }
.member-score-grid th:nth-child(5) { width: 98px; }
.member-score-grid th:nth-child(6) { width: 50px; }
.member-score-grid th:nth-child(7) { width: 48px; }
.member-score-grid th:nth-child(8) { width: 132px; }
.member-score-grid th:nth-child(9) { width: 104px; }
.member-score-grid th:nth-child(10) { width: 52px; }

.member-score-stats {
  font-size: 0.59rem;
  font-weight: 800 !important;
  text-align: center !important;
  text-transform: uppercase;
  white-space: nowrap;
}

.member-score-stats.is-on {
  color: var(--scoodle-front-primary);
}

.member-score-stats.is-off {
  color: #7a817d;
}

.member-score-date,
.member-score-compact-total,
.member-score-course {
  font-size: 0.65rem;
  white-space: nowrap;
}

.member-score-card-links {
  gap: 3px;
}

.member-score-card-links a,
.member-score-card-links button,
.member-score-card-links span {
  border-radius: 3px;
  font-size: 0.57rem;
  font-weight: 650;
  min-height: 21px;
  padding: 1px 3px;
}

.member-score-grid .admin-profile-record-remove {
  font-size: 0.57rem;
  font-weight: 650;
  min-height: 21px;
  padding: 2px 4px;
}

/* profile-and-ghin-grid-1 */
.clubhouse-member-profile .admin-profile-compact-grid {
  grid-template-columns: repeat(auto-fit, minmax(132px, 205px));
  justify-content: start;
}

.clubhouse-member-profile .admin-profile-name-grid {
  max-width: 510px;
}

.clubhouse-member-profile .admin-profile-golf-block {
  border-top: 1px solid color-mix(in srgb, var(--scoodle-front-primary) 24%, #fff);
  display: grid;
  gap: 10px;
  margin-top: 4px;
  padding-top: 12px;
}

.clubhouse-member-profile .admin-profile-subsection-head {
  padding-bottom: 7px;
}

.clubhouse-member-profile .admin-profile-golf-view-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* member-profile-compact-fields-1 */
.clubhouse-member-profile .member-profile-info-view-grid,
.clubhouse-member-profile .member-profile-info-edit-grid {
  display: grid;
  gap: 9px 10px;
  grid-template-areas:
    "name nickname phone notices"
    "email address address notices";
  grid-template-columns: 250px 240px 130px 130px;
  justify-content: start;
}

.clubhouse-member-profile .member-profile-info-view-row,
.clubhouse-member-profile .member-profile-info-edit-row {
  display: contents;
}

.clubhouse-member-profile .profile-info-name { grid-area: name; }
.clubhouse-member-profile .profile-info-nickname { grid-area: nickname; }
.clubhouse-member-profile .profile-info-phone { grid-area: phone; }
.clubhouse-member-profile .profile-info-email { grid-area: email; }
.clubhouse-member-profile .profile-info-address {
  grid-area: address;
  max-width: 380px;
  width: 380px;
}

.clubhouse-member-profile .member-profile-contact-preferences {
  align-content: center;
  align-self: stretch;
  background: #f7f8f7;
  border: 1px solid #d6ddd8;
  border-radius: 5px;
  display: grid;
  gap: 9px;
  grid-area: notices;
  justify-items: start;
  padding: 8px 10px;
}

.clubhouse-member-profile .member-profile-notice-option {
  align-items: center;
  color: #69756e;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  line-height: 1.1;
  white-space: nowrap;
}

.clubhouse-member-profile .member-profile-notice-option input {
  appearance: none;
  display: grid;
  place-content: center;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 2px solid #5d6c65;
  border-radius: 3px;
  background: #fff;
  opacity: 1;
}

.clubhouse-member-profile .member-profile-notice-option input:checked {
  border-color: #16734a;
  background: #16734a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.2 6.3 11.4 13.2 4.5' fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.4'/%3E%3C/svg%3E") center / 14px no-repeat;
}

.clubhouse-member-profile .member-profile-notice-option input:focus-visible {
  outline: 2px solid var(--scoodle-front-primary);
  outline-offset: 2px;
}

.clubhouse-member-profile .member-profile-contact-preferences.is-editing {
  background: #fff;
  border-color: color-mix(in srgb, var(--scoodle-front-primary) 38%, #fff);
}

.clubhouse-member-profile .member-profile-contact-preferences.is-editing .member-profile-notice-option {
  color: var(--scoodle-front-primary);
}

.clubhouse-member-profile .member-profile-contact-preferences.is-editing .member-profile-notice-option input {
  cursor: pointer;
}

.clubhouse-member-profile .member-profile-contact-preferences.is-editing .member-profile-notice-option input:checked {
  border-color: var(--scoodle-front-primary);
  background-color: var(--scoodle-front-primary);
}

.clubhouse-member-profile .member-profile-view-field {
  align-content: start;
  display: grid;
  gap: 4px;
  min-width: 0;
}

.clubhouse-member-profile .member-profile-view-field > span {
  color: var(--scoodle-front-primary);
  font-size: 14px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.12;
}

.clubhouse-member-profile .member-profile-view-field .admin-profile-view-item {
  align-items: center;
  display: flex;
  min-height: 32px;
  padding: 4px 7px;
}

.clubhouse-member-profile .member-profile-view-field .admin-profile-view-item > strong {
  font-size: 14px;
  line-height: 1.12;
}

.clubhouse-member-profile .member-profile-info-edit-grid .admin-field > span,
.clubhouse-member-profile .member-profile-golf-edit-grid .admin-field > span {
  font-size: 14px;
  line-height: 1.12;
}

.clubhouse-member-profile .member-profile-info-edit-grid .admin-field input,
.clubhouse-member-profile .member-profile-info-edit-grid .admin-field select,
.clubhouse-member-profile .member-profile-golf-edit-grid .admin-field input,
.clubhouse-member-profile .member-profile-golf-edit-grid .admin-field select {
  font-size: 14px;
  min-height: 32px;
  padding: 4px 7px;
  height: 32px;
}

.clubhouse-member-profile .member-profile-golf-block {
  gap: 8px;
}

.clubhouse-member-profile .member-profile-golf-view-grid,
.clubhouse-member-profile .member-profile-golf-edit-grid {
  display: grid;
  gap: 9px;
}

.clubhouse-member-profile .member-profile-golf-view-row,
.clubhouse-member-profile .member-profile-golf-edit-row {
  align-items: end;
  display: grid;
  gap: 9px;
  justify-content: start;
}

.clubhouse-member-profile .member-profile-golf-view-primary,
.clubhouse-member-profile .member-profile-golf-edit-primary {
  grid-template-columns: 100px 60px 250px 70px 260px 50px;
}

.clubhouse-member-profile .member-profile-golf-view-secondary,
.clubhouse-member-profile .member-profile-golf-edit-secondary {
  grid-template-columns: 200px 120px 450px;
}

.clubhouse-member-profile .admin-dob-part > small {
  font-size: 14px;
  line-height: 1.12;
}

.clubhouse-member-profile .member-profile-golf-edit-primary .profile-golf-dob {
  min-width: 260px;
}

.clubhouse-member-profile .member-profile-golf-view-grid .member-profile-view-field {
  min-width: 0;
}

.clubhouse-member-profile .admin-player-profile-actions.has-status {
  grid-template-columns: auto auto;
  justify-content: end;
}

.clubhouse-member-profile .admin-player-profile-actions.has-status [data-member-profile-status] {
  grid-column: 1 / -1;
  justify-self: center;
}

/* member-profile-shared-footer-161 */
.clubhouse-dialog.member-profile-dialog .clubhouse-dialog-footer .admin-player-profile-actions {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  justify-content: end;
  margin-left: auto;
  width: min(100%, 360px);
}

.clubhouse-dialog.member-profile-dialog .clubhouse-dialog-footer .admin-player-profile-actions > [data-member-profile-status] {
  align-items: center;
  color: #ffffff;
  background: var(--scoodle-claim-primary);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  grid-column: 1 / -1;
  justify-content: center;
  justify-self: end;
  min-height: 30px;
  padding: 0 12px;
}

.clubhouse-dialog.member-profile-dialog .clubhouse-dialog-footer .admin-player-profile-actions > [data-member-profile-status]:empty {
  display: none;
}

.clubhouse-dialog.member-profile-dialog .clubhouse-dialog-footer .admin-player-profile-actions > button {
  border: 1px solid transparent;
  border-radius: 6px;
  color: #ffffff;
  background: var(--scoodle-claim-primary);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  min-height: 40px;
  padding: 0 16px;
}

.clubhouse-dialog.member-profile-dialog .clubhouse-dialog-footer .admin-player-profile-actions > button.secondary {
  border-color: color-mix(in srgb, var(--scoodle-claim-primary) 34%, #ffffff);
  color: var(--scoodle-claim-primary);
  background: #ffffff;
}

.clubhouse-dialog.member-profile-dialog .clubhouse-dialog-footer .admin-player-profile-actions > button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
}

/* member-profile-footer-close-1 */
.clubhouse-dialog.member-profile-dialog .clubhouse-dialog-head {
  grid-template-columns: minmax(0, 1fr);
}

.clubhouse-dialog.member-profile-dialog .clubhouse-dialog-head [data-close-clubhouse-modal] {
  display: none;
}

.clubhouse-member-profile .admin-player-profile-actions.is-viewing.edit-actions-visible {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.clubhouse-member-profile .admin-player-profile-actions.is-viewing.edit-actions-visible button {
  font-size: 14px;
  font-weight: 650;
  min-height: 34px;
  padding-inline: 14px;
}

@media (max-width: 700px) {
  .clubhouse-member-profile .admin-player-profile-actions.is-viewing.edit-actions-visible button {
    font-size: 14px;
    padding-inline: 10px;
  }
}

.clubhouse-member-profile .member-profile-ghin-help {
  color: #66756d;
  font-size: 14px;
  font-weight: 650;
}

.clubhouse-member-profile .member-profile-ghin-help[data-status-state="checking"] { color: var(--scoodle-front-primary); }
.clubhouse-member-profile .member-profile-ghin-help[data-status-state="verified"] { color: #16734a; }
.clubhouse-member-profile .member-profile-ghin-help[data-status-state="pending"] { color: #8b6414; }

/* member-profile-scoodle-header-104 */
.clubhouse-dialog.member-profile-dialog .clubhouse-dialog-head strong {
  font-size: 22px;
  line-height: 1.08;
}

.clubhouse-dialog.member-profile-dialog .clubhouse-dialog-head [data-clubhouse-modal-subtitle] {
  font-size: 20px;
  font-weight: 650;
  line-height: 1.15;
}

.clubhouse-member-profile .admin-player-profile-actions.is-viewing.edit-actions-visible .member-profile-close {
  box-sizing: border-box;
  min-width: 50px;
  padding-inline: 0;
  width: 50px;
}

.member-score-grid {
  min-width: 950px;
}

.member-score-grid th:nth-child(1) { width: 126px; }
.member-score-grid th:nth-child(2) { width: 72px; }
.member-score-grid th:nth-child(3) { width: 48px; }
.member-score-grid th:nth-child(4) { width: 42px; }
.member-score-grid th:nth-child(5) { width: 138px; }
.member-score-grid th:nth-child(6) { width: 68px; }
.member-score-grid th:nth-child(7) { width: 48px; }
.member-score-grid th:nth-child(8) { width: 46px; }
.member-score-grid th:nth-child(9) { width: 126px; }
.member-score-grid th:nth-child(10) { width: 98px; }
.member-score-grid th:nth-child(11) { width: 52px; }

.member-score-ghin {
  color: var(--scoodle-front-primary);
  font-size: 0.59rem;
  font-weight: 800 !important;
  text-align: center !important;
  text-transform: uppercase;
  white-space: nowrap;
}

.member-score-ghin.is-not button {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--scoodle-front-primary) 55%, #fff);
  border-radius: 3px;
  color: var(--scoodle-front-primary);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 20px;
  padding: 1px 4px;
}

@media (max-width: 700px) {
  .clubhouse-member-profile .admin-profile-compact-grid,
  .clubhouse-member-profile .admin-profile-golf-view-grid {
    grid-template-columns: 1fr;
  }

  .clubhouse-member-profile .admin-profile-name-grid {
    max-width: none;
  }

  .clubhouse-member-profile .member-profile-info-view-grid,
  .clubhouse-member-profile .member-profile-info-edit-grid {
    grid-template-areas: none;
    grid-template-columns: 1fr;
  }

  .clubhouse-member-profile .member-profile-info-view-row,
  .clubhouse-member-profile .member-profile-info-edit-row {
    display: grid;
    gap: 8px;
    grid-column: 1;
  }

  .clubhouse-member-profile .member-profile-info-view-row > *,
  .clubhouse-member-profile .member-profile-info-edit-row > * {
    grid-area: auto;
    max-width: none;
    width: auto;
  }

  .clubhouse-member-profile .member-profile-contact-preferences {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clubhouse-member-profile .member-profile-golf-view-primary,
  .clubhouse-member-profile .member-profile-golf-edit-primary,
  .clubhouse-member-profile .member-profile-golf-view-secondary,
  .clubhouse-member-profile .member-profile-golf-edit-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clubhouse-member-profile .member-profile-golf-view-primary > .profile-golf-ghin-name,
  .clubhouse-member-profile .member-profile-golf-edit-primary > .profile-golf-ghin-name,
  .clubhouse-member-profile .member-profile-golf-view-secondary > .profile-golf-tags,
  .clubhouse-member-profile .member-profile-golf-edit-secondary > .profile-golf-tags {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .member-score-toolbar {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .member-score-filter-row {
    grid-template-columns: minmax(0, 1fr) 94px 124px;
  }

  .member-score-toolbar-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 430px) {
  .member-score-filter-row {
    grid-template-columns: minmax(0, 1fr) 88px;
  }

  .member-score-period {
    grid-column: 1 / -1;
  }
}

.clubhouse-promo-entry {
  display: grid;
  gap: 5px;
  padding: 9px;
  border: 1px solid rgba(200, 164, 77, 0.5);
  border-radius: 10px;
  background: var(--scoodle-soft-cream, #fff9e9);
}

.clubhouse-promo-entry label > span:first-child {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.clubhouse-promo-entry label > span:first-child small {
  color: rgba(16, 42, 67, 0.62);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.clubhouse-promo-entry-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
}

.clubhouse-promo-entry-row input {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.clubhouse-promo-entry-row button {
  min-height: 42px;
  border: 1px solid var(--scoodle-navy);
  border-radius: 8px;
  padding: 0 13px;
  color: #ffffff;
  background: var(--scoodle-navy);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 900;
  cursor: pointer;
}

.clubhouse-promo-entry-row button:disabled {
  opacity: 0.66;
  cursor: wait;
}

.clubhouse-promo-entry > small {
  color: rgba(16, 42, 67, 0.72);
  font-size: 0.68rem;
  font-weight: 750;
}

.clubhouse-promo-entry > small.is-success {
  color: #006747;
}

.clubhouse-promo-entry > small.is-error {
  color: #8b1f2f;
}
.clubhouse-event-brief {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 33, 71, 0.14);
  border-radius: 14px;
  padding: 14px;
}

.clubhouse-event-brief dl {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.clubhouse-event-brief dl div {
  border-bottom: 1px solid rgba(0, 33, 71, 0.1);
  display: grid;
  gap: 2px;
  padding-bottom: 8px;
}

.clubhouse-event-brief dt {
  color: var(--theme-primary, #002147);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.clubhouse-event-brief dd {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.clubhouse-event-status-row {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto auto;
  margin-top: 12px;
}

.clubhouse-event-status-row strong {
  color: var(--theme-primary, #002147);
}

.clubhouse-event-status-row button,
.clubhouse-event-pills button,
.clubhouse-event-pills a {
  align-items: center;
  background: var(--theme-primary, #002147);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  text-decoration: none;
}

.clubhouse-event-rounds h3 {
  color: var(--theme-primary, #002147);
  margin: 18px 0 8px;
}

.clubhouse-event-round-card {
  background: #fff;
  border: 1px solid rgba(0, 33, 71, 0.14);
  border-radius: 12px;
  margin-top: 9px;
  padding: 12px;
}

.clubhouse-event-round-card header {
  display: grid;
  gap: 2px;
}

.clubhouse-event-round-card header span {
  font-size: 12px;
}

.clubhouse-event-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.clubhouse-event-player-list {
  display: grid;
  gap: 1px;
}

.clubhouse-event-player-list span {
  background: #fff;
  border-bottom: 1px solid rgba(0, 33, 71, 0.1);
  font-weight: 750;
  padding: 10px 12px;
}

@media (max-width: 560px) {
  .clubhouse-event-brief dl { grid-template-columns: 1fr; }
  .clubhouse-event-status-row { grid-template-columns: 1fr auto; }
  .clubhouse-event-status-row span { grid-column: 1 / -1; }
}

/* clubhouse-icon-layout-82 */
.clubhouse-master-card {
  grid-template-columns: 54px minmax(0, 1fr) 12px;
  column-gap: 10px;
  min-height: 66px;
  padding: 7px 9px 7px 0;
}

.clubhouse-master-icon {
  align-self: stretch;
  display: grid;
  min-height: 52px;
  overflow: hidden;
  place-items: center;
  width: 54px;
}

.clubhouse-master-icon img {
  height: 48px;
  object-fit: contain;
  width: 48px;
}

.clubhouse-master-card.tournament-office {
  grid-template-columns: 60px minmax(0, 1fr) 14px;
  min-height: 72px;
  padding-left: 0;
}

.clubhouse-master-card.tournament-office .clubhouse-master-icon {
  min-height: 58px;
  width: 60px;
}

.clubhouse-master-card.tournament-office .clubhouse-master-icon img {
  height: 54px;
  width: 54px;
}

.clubhouse-around-row {
  grid-template-columns: 60px minmax(0, 1fr) 12px;
  column-gap: 9px;
  min-height: 56px;
  padding: 5px 9px 5px 0;
}

.clubhouse-around-icon {
  align-self: stretch;
  border-right: 1px solid rgba(200, 164, 77, 0.34);
  box-sizing: border-box;
  display: grid;
  min-height: 52px;
  overflow: hidden;
  place-items: center;
  width: 60px;
}

.clubhouse-around-icon img {
  height: 48px;
  object-fit: contain;
  width: 48px;
}

.clubhouse-heading-rule i {
  height: 32px;
  width: 42px;
}

.clubhouse-heading-rule img {
  height: 40px;
  width: 40px;
}

.clubhouse-experience-card {
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 8px;
}

.clubhouse-experience-icon,
.clubhouse-experience-icon img {
  height: 40px;
  width: 40px;
}

.clubhouse-experience-icon {
  overflow: hidden;
}

.clubhouse-nav-icon {
  height: clamp(23px, 3.6dvh, 29px);
  width: clamp(23px, 3.6dvh, 29px);
}

:is(.clubhouse-master-icon, .clubhouse-around-icon, .clubhouse-experience-icon) .clubhouse-icon-scheduleEvents,
:is(.clubhouse-master-icon, .clubhouse-around-icon, .clubhouse-experience-icon) .clubhouse-icon-news {
  transform: translateX(-1px) scale(1.04);
}

:is(.clubhouse-master-icon, .clubhouse-around-icon, .clubhouse-experience-icon) .clubhouse-icon-teeTime {
  transform: translateX(1px) scale(1.12);
}

:is(.clubhouse-master-icon, .clubhouse-around-icon, .clubhouse-experience-icon) .clubhouse-icon-stats {
  transform: translate(1px, -1px) scale(1.08);
}

:is(.clubhouse-master-icon, .clubhouse-around-icon, .clubhouse-experience-icon) .clubhouse-icon-guest,
:is(.clubhouse-master-icon, .clubhouse-around-icon, .clubhouse-experience-icon) .clubhouse-icon-game,
:is(.clubhouse-master-icon, .clubhouse-around-icon, .clubhouse-experience-icon) .clubhouse-icon-membersOnly {
  transform: translateX(-1px) scale(1.06);
}

@media (max-width: 560px) {
  .clubhouse-master-card {
    grid-template-columns: 50px minmax(0, 1fr) 12px;
    min-height: 64px;
    padding-left: 0;
  }

  .clubhouse-master-icon {
    min-height: 50px;
    width: 50px;
  }

  .clubhouse-master-icon img {
    height: 46px;
    width: 46px;
  }

  .clubhouse-around-row {
    grid-template-columns: 58px minmax(0, 1fr) 12px;
    column-gap: 8px;
    min-height: 54px;
    padding-left: 0;
  }

  .clubhouse-around-icon {
    min-height: 50px;
    width: 58px;
  }

  .clubhouse-around-icon img {
    height: 46px;
    width: 46px;
  }
}

@media (max-width: 420px) {
  .clubhouse-experience-card {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .clubhouse-experience-icon,
  .clubhouse-experience-icon img {
    height: 38px;
    width: 38px;
  }
}

@media (max-height: 760px) and (max-width: 520px) {
  .clubhouse-heading-rule i {
    height: 27px;
    width: 36px;
  }

  .clubhouse-heading-rule img {
    height: 34px;
    width: 34px;
  }
}
/* Player identity confirmation: compact controls in the event's USA palette. */
.player-claim-review { display: grid; gap: 14px; font-size: 14px; }
.player-claim-review article { border: 1px solid #c7d1e2; border-radius: 10px; padding: 14px; }
.player-claim-review h3 { margin: 0 0 8px; font-size: 22px; color: #163969; }
.player-claim-review p { margin: 6px 0; }
.player-claim-review form { display: flex; flex-wrap: wrap; gap: 10px; align-items: end; }
.player-claim-review label { display: grid; gap: 5px; flex: 1 1 200px; }
.player-claim-review input { width: 100%; min-width: 0; height: 36px; padding: 6px 9px; border: 1px solid #b4c1d3; border-radius: 6px; font: inherit; }
.player-claim-review button { background: var(--usa-blue, #173e70) !important; color: #fff !important; border: 1px solid #173e70 !important; width: auto !important; min-width: 0 !important; flex: 0 0 auto !important; padding: 8px 14px !important; border-radius: 7px; font: inherit !important; justify-self: end; }
.player-claim-search-intake { grid-column: 1 / -1; }
.clubhouse-dialog:has(.player-claim-review), .clubhouse-dialog.member-join-dialog { background: #fff !important; border-color: #b4c1d3 !important; }
.clubhouse-dialog:has(.player-claim-review) { width: min(100%, 540px); }
.clubhouse-dialog:has(.player-claim-review) .clubhouse-dialog-head,
.clubhouse-dialog.member-join-dialog .clubhouse-dialog-head { background: #173e70 !important; border-bottom: 1px solid #173e70 !important; grid-template-columns: 1fr; }
.clubhouse-dialog:has(.player-claim-review) .clubhouse-dialog-head *,
.clubhouse-dialog.member-join-dialog .clubhouse-dialog-head * { color: #fff !important; opacity: 1 !important; }
.clubhouse-dialog:has(.player-claim-review) .clubhouse-dialog-head button,
.clubhouse-dialog.member-join-dialog .clubhouse-dialog-head button { display: none !important; }
.clubhouse-dialog:has(.player-claim-review) .clubhouse-dialog-footer,
.clubhouse-dialog.member-join-dialog .clubhouse-dialog-footer { background: #fff !important; border-top: 1px solid #c7d1e2 !important; }
.clubhouse-dialog:has(.player-claim-review) .clubhouse-dialog-footer button,
.clubhouse-dialog.member-join-dialog .clubhouse-dialog-footer button { background: #173e70 !important; color: #fff !important; width: auto !important; flex: 0 0 auto !important; border-color: #173e70 !important; }
.clubhouse-dialog:has(.player-claim-review) .clubhouse-dialog-footer .clubhouse-dialog-actions,
.clubhouse-dialog.member-join-dialog .clubhouse-dialog-footer .clubhouse-dialog-actions { display: flex !important; justify-content: flex-end !important; gap: 10px; width: 100%; }
.clubhouse-dialog:has(.player-claim-review) .clubhouse-dialog-footer button { min-width: 80px !important; max-width: 120px !important; font-size: 14px !important; font-weight: 600 !important; }

/* The welcome journey gives the number a single, unmistakable place of honor. */
.clubhouse-dialog:has(.player-claim-experience) { width: min(100%, 580px); max-height: min(calc(100dvh - 32px), 840px); border-radius: 20px; }
.clubhouse-dialog:has(.player-claim-experience) .clubhouse-dialog-head { padding: 12px 22px; }
.clubhouse-dialog:has(.player-claim-experience) .clubhouse-dialog-head strong { font-size: 16px; line-height: 1.3; }
.player-claim-experience { gap: 18px; color: #173450; line-height: 1.5; }
.player-claim-brand { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.player-claim-brand img { width: 140px; max-width: 42%; height: auto; }
.player-claim-brand > span { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-align: right; color: #173e70; }
.player-number-reveal, .player-claim-welcome { position: relative; overflow: hidden; isolation: isolate; border-radius: 16px; padding: 25px 20px 24px; text-align: center; background: linear-gradient(130deg, #102c52, #214f83); color: #fff; border: 1px solid #224d7c; box-shadow: 0 8px 22px #14325118; }
.player-number-reveal::before, .player-claim-welcome::before { content: ''; position: absolute; z-index: -1; width: 240px; height: 240px; border-radius: 50%; right: -125px; top: -85px; background: radial-gradient(circle, #ffffff18 2px, transparent 3px) 0 0 / 14px 14px; border: 1px solid #ffffff26; }
.player-number-reveal::after, .player-claim-welcome::after { content: ''; position: absolute; left: 34%; right: 34%; bottom: 0; height: 4px; background: #c71940; border-radius: 3px 3px 0 0; }
.player-number-eyebrow { display: block; font-size: 10px; line-height: 1.4; font-weight: 700; letter-spacing: .18em; color: #fff; }
.player-number-reveal h2 { margin: 12px 0 0; font-family: inherit; font-size: 22px; font-weight: 600; line-height: 1.3; color: #fff; }
.player-number-value { display: block; margin: 4px 0; font-size: clamp(64px, 12vw, 94px); font-weight: 800; letter-spacing: -.045em; line-height: 1.12; color: #fff; font-variant-numeric: tabular-nums; overflow-wrap: anywhere; }
.player-number-reveal p, .player-claim-welcome p { margin: 10px 0 0; font-size: 14px; color: #fff; line-height: 1.5; }
.player-claim-welcome h2 { margin: 12px 0; color: #fff; font-size: clamp(32px, 8vw, 44px); line-height: 1.08; letter-spacing: -.035em; font-weight: 750; }
.player-claim-kicker { display: block; color: #b50b35; font-size: 10px; font-weight: 750; letter-spacing: .13em; margin-bottom: 5px; }
.player-claim-intro h3 { margin: 0 0 6px; color: #122e50; font-size: 23px; line-height: 1.2; letter-spacing: -.015em; }
.player-claim-intro p { margin: 0; font-size: 15px; }
.player-claim-experience [data-contestant-welcome] { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 12px; }
.player-claim-experience label { font-size: 13px; font-weight: 600; }
.player-claim-experience input { height: 42px; font-size: 15px; font-weight: 400; background: #fff; color: #173450; }
.player-claim-experience input:focus { outline: 2px solid #245486; outline-offset: 2px; }
.player-claim-experience button.player-claim-primary { width: 100% !important; min-height: 44px; grid-column: 1 / -1; font-size: 15px !important; font-weight: 650 !important; padding: 10px 16px !important; border-radius: 9px; }
.player-claim-experience .player-claim-match { border: 1px solid #c8d7e8; border-left: 4px solid #265484; background: #f7faff; padding: 16px; border-radius: 12px; }
.player-claim-match h3 { font-size: 21px; }
.player-claim-events { display: grid; gap: 10px; margin: 10px 0 16px; }
.player-claim-events > div { display: grid; gap: 2px; }
.player-claim-events strong { font-size: 15px; color: #143b69; }
.player-claim-events span { font-size: 13px; color: #334b66; }
.player-claim-score-link { display: inline-block; color: #173e70; font-size: 13px; text-underline-offset: 3px; }
.player-claim-other { display: flex; gap: 8px 14px; align-items: center; justify-content: space-between; flex-wrap: wrap; font-size: 13px; padding-top: 12px; border-top: 1px solid #dce3ed; }
.player-claim-other > div { display: flex; flex-wrap: wrap; gap: 12px; }
.player-claim-experience button.player-claim-text-button { background: transparent !important; color: #173e70 !important; border: 0 !important; padding: 4px 0 !important; font-weight: 600 !important; text-decoration: underline; text-underline-offset: 3px; }
.player-claim-experience .player-claim-footnote { font-size: 12px; text-align: center; color: #42536a; margin: 0; }
.player-claim-benefits { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.player-claim-benefits span { padding: 6px 11px; border-radius: 30px; border: 1px solid #d9e2ed; color: #244565; font-size: 12px; background: #f8faff; }
.player-claim-experience [data-contestant-status]:empty { display: none; }
.player-claim-experience [data-contestant-status] { color: #a20a2a; font-size: 14px; }
.player-number-reveal.is-compact { grid-column: 1 / -1; padding: 16px; }
.player-number-reveal.is-compact .player-number-value { font-size: 60px; }
.player-number-reveal.is-compact h2 { font-size: 18px; margin-top: 6px; }
@media (max-width: 440px) {
  .player-claim-experience { gap: 14px; }
  .player-claim-brand img { width: 122px; }
  .player-claim-brand > span { font-size: 9px; }
  .player-number-reveal, .player-claim-welcome { padding: 22px 16px; }
  .player-claim-experience [data-contestant-welcome] { grid-template-columns: 1fr; }
  .player-claim-intro h3 { font-size: 22px; }
}
@media (prefers-reduced-motion: no-preference) {
  .player-number-reveal .player-number-value { animation: scoodle-number-arrive .35s ease-out both; }
  @keyframes scoodle-number-arrive { from { transform: translateY(8px); } to { transform: translateY(0); } }
}

/* Finished-event chooser belongs to Results, not the live leaderboard shortcut. */
.clubhouse-dialog.clubhouse-results-dialog { width: min(680px, calc(100vw - 24px)); background: #fff; }
.clubhouse-results-dialog .clubhouse-dialog-head { background: var(--scoodle-front-primary, #163e78); padding: 16px; border-bottom: 0; }
:is(html, body)[data-admin-theme="usa"] .clubhouse-results-dialog .clubhouse-dialog-head { background: #163e78; }
.clubhouse-results-dialog .clubhouse-dialog-head :is(strong, span) { color: #fff; opacity: 1; }
.clubhouse-results-dialog .clubhouse-dialog-head strong { font-size: 22px; }
.clubhouse-results-dialog .clubhouse-dialog-head > div > span { font: 400 14px/1.4 system-ui, sans-serif; }
.clubhouse-results-dialog .clubhouse-dialog-head button { display: none; }
.clubhouse-dialog.clubhouse-results-dialog .clubhouse-dialog-footer { background: #fff; padding: 0; border: 0; }
.clubhouse-results-dialog .clubhouse-modal-body { padding: 16px; background: #f4f7fc; }
.clubhouse-results-list { display: grid; gap: 12px; min-width: 0; }
.clubhouse-result-event { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px; border: 1px solid #d4dfed; border-radius: 10px; background: #fff; color: #18273a; text-decoration: none; }
.clubhouse-result-event > span:first-child { display: grid; gap: 6px; min-width: 0; overflow-wrap: anywhere; }
.clubhouse-result-event strong { color: var(--scoodle-front-primary, #163e78); font: 650 20px/1.3 system-ui, sans-serif; }
.clubhouse-result-event span { font-size: 14px; }
.clubhouse-result-event small { color: #52647e; font-size: 13px; }
.clubhouse-result-open { flex-shrink: 0; color: var(--scoodle-front-primary, #163e78); font-weight: 600; white-space: nowrap; }
:is(html, body)[data-admin-theme="usa"] .clubhouse-result-event :is(strong, .clubhouse-result-open) { color: #163e78; }
.clubhouse-result-event:hover { border-color: #163e78; background: #f4f7fc; }
.clubhouse-result-event:focus-visible { outline: 3px solid #163e78; outline-offset: 2px; }
.clubhouse-results-status, .clubhouse-results-empty { margin: 0; color: #52647e; font: 400 14px/1.5 system-ui, sans-serif; }
.clubhouse-results-status:not([hidden]) { margin-bottom: 12px; }
@media (max-width: 500px) {
  .clubhouse-result-event { align-items: flex-start; flex-direction: column; gap: 10px; padding: 14px; }
  .clubhouse-result-open { align-self: flex-end; }
}
