.zp-page,
.zp-page input,
.zp-page button,
.zp-page select,
.zp-page table {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.zp-page {
  width: min(1120px, calc(100% - 32px));
  margin: 32px auto 56px;
}

.zp-page-header {
  margin-bottom: 22px;
}

.zp-page-title h1 {
  margin: 8px 0 4px;
  color: #17351f;
  font-size: 34px;
  line-height: 1.15;
}

.zp-page-title p {
  margin: 0;
  color: #66756b;
}

.zp-back {
  color: #2f8a3d;
  font-weight: 700;
  text-decoration: none;
}

.zp-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.zp-selector {
  border: 1px solid #d9eadf;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 74, 37, .08);
  overflow: hidden;
}

.zp-selector-head {
  padding: 18px 22px;
  color: #fff;
  background: linear-gradient(135deg, #006b38 0%, #178642 100%);
}

.zp-selector-title {
  font-size: 18px;
  font-weight: 800;
}

.zp-selector-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 18px 22px;
  background: #fbfdfb;
}

.zp-selector select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid #d9eadf;
  border-radius: 8px;
  background: #fff;
  color: #17351f;
  font-size: 15px;
}

.zp-selector button,
.zp-action {
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #2f8a3d;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}

.zp-results {
  border: 1px solid #d9eadf;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(18, 74, 37, .10);
  overflow: hidden;
}

.zp-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: #fff;
  background: linear-gradient(135deg, #006b38 0%, #178642 100%);
}

.zp-results-title {
  color: #fff;
  font-size: 19px;
  font-weight: 800;
}

.zp-results-meta {
  margin-top: 4px;
  color: rgba(255,255,255,.84);
  font-size: 14px;
}

.zp-export,
.zp-clear {
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.zp-export:hover,
.zp-clear:hover {
  background: rgba(255,255,255,.12);
}

.zp-table-wrap {
  overflow-x: auto;
}

.zp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.zp-table th {
  padding: 13px 18px;
  background: #f1f8f3;
  color: #315b3d;
  font-size: 12px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 1px solid #d9eadf;
}

.zp-table th a {
  color: inherit;
  text-decoration: none;
}

.zp-table th a:hover {
  color: #006b38;
}

.zp-table td {
  padding: 17px 18px;
  color: #24352a;
  border-bottom: 1px solid #edf4ef;
  vertical-align: middle;
}

.zp-table tbody tr:nth-child(even) td {
  background: #fbfdfb;
}

.zp-table tbody tr:hover td {
  background: #eef8f1;
}

.zp-club-name,
.zp-player-name {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #17351f;
  font-weight: 800;
}

.zp-club-name::before,
.zp-player-name::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #178642;
  box-shadow: 0 0 0 4px #e4f4e8;
  flex: 0 0 auto;
}

.zp-province-pill,
.zp-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eaf6ee;
  color: #176b37;
  font-size: 13px;
  font-weight: 800;
}

.zp-status-pending {
  background: #fff1f1;
  color: #b42318;
}

.zp-muted {
  color: #66756b;
}

.zp-cert-col {
  width: 44px;
  min-width: 44px;
  max-width: 44px;
  padding-left: 8px !important;
  padding-right: 8px !important;
  text-align: center !important;
}

.zp-cert-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #eaf6ee;
  color: #176b37;
  text-decoration: none;
}

.zp-cert-link svg {
  width: 16px;
  height: 16px;
  display: block;
  stroke: currentColor;
}

.zp-cert-link:hover {
  background: #d9eadf;
}

.zp-empty {
  padding: 34px 22px;
  color: #66756b;
  text-align: center;
}

@media (max-width: 720px) {
  .zp-page {
    width: min(100% - 24px, 1120px);
    margin-top: 22px;
  }

  .zp-page-title h1 {
    font-size: 28px;
  }

  .zp-selector-body {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .zp-selector button,
  .zp-action {
    width: 100%;
  }

  .zp-results-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 16px;
  }

  .zp-table-wrap {
    overflow: visible;
  }

  .zp-table,
  .zp-table tbody,
  .zp-table tr,
  .zp-table td {
    display: block;
    width: 100%;
  }

  .zp-table thead {
    display: none;
  }

  .zp-table tr {
    padding: 15px 16px;
    border-bottom: 1px solid #d9eadf;
    background: #fff;
  }

  .zp-table tbody tr:nth-child(even) td,
  .zp-table tbody tr:hover td {
    background: transparent;
  }

  .zp-table td {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 12px;
    padding: 6px 0;
    border: 0;
  }

  .zp-table td::before {
    content: attr(data-label);
    color: #66756b;
    font-size: 13px;
    font-weight: 800;
  }

  .zp-table td:first-child {
    display: block;
    padding-bottom: 11px;
  }

  .zp-table td:first-child::before {
    display: none;
  }

  .zp-club-name,
  .zp-player-name {
    font-size: 17px;
    line-height: 1.3;
  }

  .zp-province-pill,
  .zp-status {
    width: fit-content;
  }

  .zp-cert-col {
    max-width: none;
    text-align: left !important;
  }
}

.zp-disclosure {
  margin-bottom: 24px;
  border: 1px solid #d9eadf;
  border-radius: 8px;
  background: #fbfdfb;
  overflow: hidden;
}

.zp-disclosure summary {
  cursor: pointer;
  padding: 14px 18px;
  color: #176b37;
  font-weight: 800;
  list-style: none;
}

.zp-disclosure summary::-webkit-details-marker {
  display: none;
}

.zp-disclosure summary::after {
  content: "+";
  float: right;
  font-size: 20px;
  line-height: 1;
}

.zp-disclosure[open] summary::after {
  content: "-";
}

.zp-disclosure-body {
  padding: 0 18px 18px;
}

.zp-disclosure .zp-selector {
  box-shadow: none;
}

.zp-disclosure .zp-selector-head {
  display: none;
}

.zp-disclosure .zp-selector-body {
  padding: 0;
  background: transparent;
}

.zp-cert-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  padding: 22px;
  background: #fbfdfb;
}

.zp-cert-field label {
  display: block;
  margin-bottom: 6px;
  color: #315b3d;
  font-size: 13px;
  font-weight: 800;
}

.zp-cert-field input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #d9eadf;
  border-radius: 8px;
}

.zp-certificate {
  margin: 24px;
  padding: 42px;
  border: 1px solid #d9eadf;
  background: #fff;
  color: #1f2f24;
  line-height: 1.65;
}

.zp-certificate h2 {
  margin: 28px 0;
  color: #17351f;
  text-align: center;
}

.zp-certificate-actions {
  padding: 0 24px 24px;
}

@media print {
  .zp-page-header,
  .zp-selector,
  .zp-disclosure,
  .zp-results:not(.zp-cert-print),
  .zp-certificate-actions {
    display: none !important;
  }

  .zp-page {
    width: auto;
    margin: 0;
  }

  .zp-certificate {
    margin: 0;
    border: 0;
    box-shadow: none;
  }
}

@media (max-width: 720px) {
  .zp-cert-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .zp-certificate {
    margin: 16px;
    padding: 24px;
  }
}

.zp-province-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.zp-province-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 13px;
  border: 1px solid #d9eadf;
  border-radius: 999px;
  background: #fff;
  color: #176b37;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.zp-province-link:hover,
.zp-province-link.is-active {
  background: #176b37;
  color: #fff;
  border-color: #176b37;
}

.zp-competition-list {
  display: grid;
  gap: 18px;
}

.zp-competition-card {
  border: 1px solid #d9eadf;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 74, 37, .08);
  overflow: hidden;
}

.zp-competition-head {
  padding: 20px 22px;
  color: #fff;
  background: linear-gradient(135deg, #006b38 0%, #178642 100%);
}

.zp-competition-title {
  margin: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
}

.zp-competition-meta {
  margin-top: 4px;
  color: rgba(255,255,255,.84);
  font-size: 14px;
}

.zp-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 22px;
  background: #fbfdfb;
}

.zp-action-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #d9eadf;
  border-radius: 8px;
  background: #fff;
  color: #17351f;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.zp-action-link:hover {
  background: #eef8f1;
  border-color: #b9ddc3;
}

.zp-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #eaf6ee;
  color: #176b37;
  font-size: 13px;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .zp-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .zp-action-grid {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .zp-competition-head {
    padding: 18px 16px;
  }
}
.zp-row-index {
  width: 56px;
  color: #66756b;
  font-weight: 800;
  text-align: center;
}

.zp-local-team {
  color: #17351f;
  font-weight: 800;
}

.zp-phone-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eaf6ee;
  color: #176b37;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 720px) {
  .zp-row-index {
    width: auto;
    text-align: left;
  }
}

.zp-calendar-list {
  display: grid;
  gap: 18px;
  padding: 18px 22px;
}

.zp-calendar-group {
  border: 1px solid #d9eadf;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.zp-calendar-group-head {
  padding: 16px 18px;
  background: #f1f8f3;
  border-bottom: 1px solid #d9eadf;
}

.zp-calendar-group-title {
  color: #17351f;
  font-size: 17px;
  font-weight: 800;
}

.zp-calendar-group-meta {
  margin-top: 3px;
  color: #66756b;
  font-size: 14px;
}

.zp-round {
  padding: 16px 18px;
  border-bottom: 1px solid #edf4ef;
}

.zp-round:last-child {
  border-bottom: 0;
}

.zp-round-title {
  margin-bottom: 12px;
  color: #176b37;
  font-size: 15px;
  font-weight: 800;
}

.zp-score-pill {
  display: inline-flex;
  justify-content: center;
  min-width: 58px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eaf6ee;
  color: #176b37;
  font-weight: 900;
}

.zp-score-pending {
  background: #f4f6f4;
  color: #66756b;
}

.zp-acta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #eaf6ee;
  color: #176b37;
  font-weight: 900;
  text-decoration: none;
}

.zp-acta-link:hover {
  background: #d9eadf;
}

.zp-team-name {
  color: #17351f;
  font-weight: 800;
}

@media (max-width: 720px) {
  .zp-calendar-list {
    padding: 16px;
  }

  .zp-round {
    padding: 14px 16px;
  }

  .zp-score-pill {
    width: fit-content;
  }
}

.zp-calendar-table {
  table-layout: fixed;
}

.zp-calendar-acta {
  width: 64px;
  text-align: center !important;
}

.zp-calendar-team {
  width: calc((100% - 196px) / 2);
}

.zp-calendar-score {
  width: 132px;
  text-align: center !important;
}

.zp-score-temporary {
  background: #fff7e6;
  color: #9a5b00;
  border: 1px solid #ffd591;
}

@media (max-width: 720px) {
  .zp-calendar-acta,
  .zp-calendar-team,
  .zp-calendar-score {
    width: 100%;
    text-align: left !important;
  }
}

.zp-force-list {
  display: grid;
  gap: 18px;
  padding: 18px 22px;
}

.zp-force-group {
  display: grid;
  gap: 14px;
}

.zp-force-group-title {
  color: #176b37;
  font-size: 18px;
  font-weight: 900;
}

.zp-force-team {
  border: 1px solid #d9eadf;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.zp-force-team-head {
  padding: 12px 16px;
  background: #f1f8f3;
  border-bottom: 1px solid #d9eadf;
  color: #17351f;
  font-weight: 900;
}

.zp-force-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
}

.zp-force-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.zp-force-table th,
.zp-force-table td {
  padding: 6px 8px;
  border-bottom: 1px solid #edf4ef;
  font-size: 13px;
  vertical-align: top;
}

.zp-force-table th {
  background: #fbfdfb;
  color: #315b3d;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.zp-force-num {
  width: 36px;
  text-align: center !important;
  color: #66756b;
  font-weight: 800;
}

.zp-force-license {
  width: 58px;
  color: #66756b;
  font-weight: 800;
}

.zp-force-player {
  color: #17351f;
  font-weight: 700;
}

.zp-force-elo {
  width: 58px;
  text-align: center !important;
  font-weight: 800;
}

@media (max-width: 820px) {
  .zp-force-list {
    padding: 16px;
  }

  .zp-force-columns {
    grid-template-columns: 1fr;
  }
}

.zp-cross-table {
  min-width: 760px;
  table-layout: fixed;
}

.zp-cross-num {
  width: 46px;
  text-align: center !important;
}

.zp-cross-team {
  width: 220px;
}

.zp-cross-result {
  width: 72px;
  text-align: center !important;
}

.zp-cross-points {
  width: 84px;
  text-align: center !important;
}

.zp-cross-diagonal {
  background: #eaf6ee !important;
}

.zp-cross-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #eaf6ee;
  color: #176b37;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.zp-cross-score.zp-score-temporary {
  background: #fff7e6;
  color: #9a5b00;
  border: 1px solid #ffd591;
}

.zp-cross-score:hover {
  filter: brightness(.96);
}

.zp-match-summary {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  background: #fbfdfb;
  border-bottom: 1px solid #d9eadf;
}

.zp-match-team {
  color: #17351f;
  font-size: 18px;
  font-weight: 900;
}

.zp-match-team:last-child {
  text-align: right;
}

.zp-match-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eaf6ee;
  color: #176b37;
  font-size: 20px;
  font-weight: 900;
}

.zp-match-status {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.zp-match-status-final {
  background: #eaf6ee;
  color: #176b37;
}

.zp-match-status-temp {
  background: #fff7e6;
  color: #9a5b00;
  border: 1px solid #ffd591;
}

.zp-match-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d9eadf;
  border-bottom: 1px solid #d9eadf;
}

.zp-match-meta-item {
  padding: 14px 18px;
  background: #fff;
}

.zp-match-meta-label {
  display: block;
  margin-bottom: 4px;
  color: #66756b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.zp-board-num {
  width: 48px;
  text-align: center !important;
}

.zp-board-color {
  width: 44px;
  text-align: center !important;
}

.zp-board-result {
  width: 74px;
  text-align: center !important;
}

.zp-board-player {
  color: #17351f;
  font-weight: 800;
}

.zp-notes {
  display: grid;
  gap: 14px;
  padding: 18px 22px;
  background: #fbfdfb;
}

.zp-note-box {
  padding: 14px 16px;
  border: 1px solid #d9eadf;
  border-radius: 8px;
  background: #fff;
}

.zp-note-title {
  margin-bottom: 6px;
  color: #315b3d;
  font-weight: 900;
}

@media (max-width: 720px) {
  .zp-match-summary {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .zp-match-team:last-child {
    text-align: left;
  }

  .zp-match-score {
    width: fit-content;
  }

  .zp-match-meta {
    grid-template-columns: 1fr;
  }
}

.zp-standings-table {
  min-width: 760px;
  table-layout: fixed;
}

.zp-standings-rank {
  width: 54px;
  text-align: center !important;
}

.zp-standings-move {
  width: 46px;
  text-align: center !important;
}

.zp-standings-team {
  width: auto;
}

.zp-standings-stat {
  width: 72px;
  text-align: center !important;
}

.zp-standings-points {
  width: 90px;
  text-align: center !important;
}

.zp-rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #eaf6ee;
  color: #176b37;
  font-weight: 900;
}

.zp-move-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.zp-move-up {
  background: #eaf6ee;
  color: #176b37;
}

.zp-move-down {
  background: #fff1f1;
  color: #b42318;
}

.zp-move-promo {
  background: #fff7e6;
  color: #9a5b00;
}

.zp-move-none {
  color: #a5b2aa;
}

.zp-rt-table {
  min-width: 720px;
  table-layout: fixed;
}

.zp-rt-num {
  width: 30px;
  text-align: center !important;
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.zp-rt-code {
  width: 58px;
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.zp-rt-player {
  width: 190px;
}

.zp-rt-elo {
  width: 50px;
  text-align: center !important;
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.zp-rt-round {
  width: 38px;
  text-align: center !important;
  padding-left: 3px !important;
  padding-right: 3px !important;
}

.zp-rt-total {
  width: 48px;
  text-align: center !important;
  padding-left: 3px !important;
  padding-right: 3px !important;
}

.zp-rt-highlight {
  color: #b42318;
  font-weight: 900;
}

.zp-rt-result {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 2px 4px;
  border-radius: 999px;
  background: #eaf6ee;
  color: #176b37;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.zp-rt-result.zp-score-temporary {
  background: #fff7e6;
  color: #9a5b00;
  border: 1px solid #ffd591;
}

.zp-rt-result.zp-score-pending {
  background: #f4f6f4;
  color: #66756b;
}

.zp-inscription-page .zp-filter-form {
  margin: 0;
}

.zp-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
}

.zp-input,
.zp-public-form input,
.zp-public-form select,
.zp-public-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #c8d8cc;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  color: #203328;
  background: #fff;
}

.zp-input:focus,
.zp-public-form input:focus,
.zp-public-form select:focus,
.zp-public-form textarea:focus {
  outline: 2px solid rgba(0, 107, 56, .18);
  border-color: #178642;
}

.zp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 0;
  border-radius: 8px;
  background: #006b38;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.zp-button-secondary {
  background: #eaf6ee;
  color: #006b38;
}

.zp-form-card {
  margin-top: 20px;
}

.zp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.zp-public-form label span {
  display: block;
  margin-bottom: 6px;
  color: #40594a;
  font-size: 13px;
  font-weight: 800;
}

.zp-selected-player {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 12px 0 18px;
  padding: 12px 14px;
  border-left: 4px solid #178642;
  border-radius: 8px;
  background: #f1f8f3;
}

.zp-consent-box,
.zp-legal-box {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid #d7e7dc;
  border-radius: 8px;
  background: #fbfefc;
}

.zp-radio-line {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 10px;
}

.zp-radio-line input {
  width: auto;
  margin-top: 3px;
}

.zp-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.zp-row-selected td {
  background: #eaf6ee !important;
}

.zp-icon-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 8px;
  background: #006b38;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.zp-empty-state {
  margin-top: 18px;
  padding: 18px;
  border: 1px dashed #b8d8c2;
  border-radius: 8px;
  background: #f7fbf8;
  color: #52685a;
  font-weight: 700;
}

@media (max-width: 720px) {
  .zp-search-row,
  .zp-form-grid {
    grid-template-columns: 1fr;
  }

  .zp-form-actions .zp-button {
    width: 100%;
  }
}

.zp-action-strip {
  display: flex;
  justify-content: flex-end;
  padding: 0 0 14px;
}

.zp-action-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 15px;
  border-radius: 8px;
  background: #006b38;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 107, 56, .14);
}

.zp-action-main:hover {
  background: #178642;
}

@media (max-width: 720px) {
  .zp-action-strip {
    justify-content: stretch;
  }

  .zp-action-main {
    width: 100%;
  }
}

.zp-action-strip {
  display: flex;
  justify-content: flex-end;
  padding: 0 0 14px;
}

.zp-button-primary {
  background: #006b38;
  color: #fff;
}

@media (max-width: 720px) {
  .zp-action-strip {
    justify-content: stretch;
  }

  .zp-action-strip .zp-button {
    width: 100%;
  }
}

.zp-feature-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 20px;
  padding: 16px;
  border: 1px solid #b7dec5;
  border-radius: 8px;
  background: linear-gradient(135deg, #f0faf3 0%, #ffffff 100%);
  box-shadow: 0 8px 20px rgba(0, 107, 56, .08);
}

.zp-feature-action-title {
  color: #123421;
  font-size: 17px;
  font-weight: 900;
}

.zp-feature-action-text {
  margin-top: 4px;
  color: #52685a;
  font-size: 14px;
  line-height: 1.35;
}

.zp-feature-action .zp-button {
  flex: 0 0 auto;
}

@media (max-width: 720px) {
  .zp-feature-action {
    align-items: stretch;
    flex-direction: column;
  }

  .zp-feature-action .zp-button {
    width: 100%;
  }
}

.zp-transeunte-form {
  margin-top: 18px;
}

.zp-form-section {
  margin-top: 18px;
}

.zp-form-section-box {
  padding: 16px;
  border: 1px solid #d7e7dc;
  border-radius: 8px;
  background: #fbfefc;
}

.zp-form-section-title {
  color: #123421;
  font-size: 17px;
  font-weight: 900;
}

.zp-form-section-note {
  margin: 4px 0 0;
  color: #52685a;
  font-size: 14px;
  line-height: 1.45;
}

.zp-form-section-box .zp-form-grid {
  margin-top: 14px;
}

.zp-privacy-box {
  background: #f7fbf8;
}

.zp-privacy-box .zp-check-line {
  margin-top: 14px;
}

.zp-inline-fields {
  display: grid;
  grid-template-columns: minmax(0, 260px) 52px;
  gap: 7px;
  align-items: center;
}

.zp-letter-field {
  min-width: 0;
  padding-left: 5px !important;
  padding-right: 5px !important;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 420px) {
  .zp-inline-fields {
    grid-template-columns: minmax(0, 1fr) 48px;
  }
}

.zp-sports-help {
  margin-top: 14px;
  padding: 12px 14px;
  border-left: 4px solid #178642;
  border-radius: 6px;
  background: #f1f8f3;
  color: #52685a;
  font-size: 14px;
  line-height: 1.5;
}

.zp-sports-help p {
  margin: 0;
}

.zp-sports-help p + p {
  margin-top: 8px;
}

.zp-sports-help a {
  color: #006b38;
  font-weight: 800;
}

.zp-privacy-text {
  margin-top: 14px;
  color: #40594a;
  font-size: 13px;
  line-height: 1.55;
}

.zp-privacy-text p {
  margin: 0 0 10px;
}

.zp-privacy-text a {
  color: #006b38;
  font-weight: 800;
}


.zp-check-line {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.zp-check-line input[type="checkbox"] {
  width: 18px !important;
  height: 18px;
  min-width: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: #006b38;
}

.zp-check-line span {
  display: block;
  min-width: 0;
  color: #203328;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.zp-privacy-consent {
  margin-top: 16px;
  padding: 13px 14px;
  border: 1px solid #b7dec5;
  border-radius: 8px;
  background: #eaf6ee;
  cursor: pointer;
}

.zp-download-intro {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-left: 4px solid #178642;
  border-radius: 8px;
  background: #f1f8f3;
  color: #40594a;
  line-height: 1.5;
}

.zp-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.zp-download-option {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid #d7e7dc;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(23, 71, 42, .07);
}

.zp-download-format {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #eaf6ee;
  color: #006b38;
  font-size: 13px;
  font-weight: 900;
}

.zp-download-content h2 {
  margin: 0;
  color: #123421;
  font-size: 17px;
  letter-spacing: 0;
}

.zp-download-content p {
  margin: 5px 0 0;
  color: #52685a;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .zp-download-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .zp-download-option {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .zp-download-format {
    width: 46px;
    height: 46px;
  }

  .zp-download-option .zp-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

.zp-season-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.zp-season-card {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 16px 18px;
  border: 1px solid #d7e7dc;
  border-left: 4px solid #178642;
  border-radius: 8px;
  background: #fff;
  color: #123421;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(23, 71, 42, .07);
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.zp-season-card:hover {
  border-color: #178642;
  box-shadow: 0 10px 26px rgba(23, 71, 42, .11);
  transform: translateY(-1px);
}

.zp-season-card strong {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

@media (max-width: 980px) {
  .zp-season-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .zp-season-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .zp-season-grid {
    grid-template-columns: 1fr;
  }
}