/* Premier Club Soccer — Public Styles
   Inherits Storefront child theme fonts, colors, and spacing. */

/* ── Shared ───────────────────────────────────────────────────────────────── */

.pcs-notice {
    color: #666;
    font-style: italic;
}

.pcs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
    margin-bottom: 1.5em;
}

.pcs-table th,
.pcs-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.pcs-table th {
    background: #f5f5f5;
    font-weight: 900;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #444;
}

.pcs-table tbody tr,
.pcs-table tbody tr:nth-child(even),
.pcs-table tbody tr:nth-child(odd),
.pcs-table tbody tr:hover,
.pcs-table tbody tr td,
.pcs-table tbody tr:nth-child(even) td,
.pcs-table tbody tr:nth-child(odd) td {
    background: #fff !important;
}

.pcs-division-heading {
    font-size: 1.1em;
    font-weight: 700;
    margin: 1.5em 0 0.5em;
    padding-bottom: 6px;
    border-bottom: 2px solid currentColor;
}

/* ── Combined Schedule + Standings view ───────────────────────────────────── */

.pcs-public {
    font-size: 0.95em;
    width: 100%;
}

/* Tabs + filter bar */
.pcs-tabs-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5em;
    flex-wrap: wrap;
    gap: 10px;
}

.pcs-tabs {
    display: flex;
    gap: 8px;
}

.pcs-tab {
    display: inline-block;
    padding: 7px 20px;
    font-weight: 600;
    font-size: 0.88em;
    color: #555;
    text-decoration: none;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 20px;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.pcs-tab:hover {
    background: #e2e2e2;
    color: #222;
    text-decoration: none;
}

.pcs-tab-active,
.pcs-tab-active:hover {
    background: #2271b1;
    color: #fff !important;
    border-color: #2271b1;
    text-decoration: none;
}

/* Division filter */
.pcs-filter-wrap select {
    padding: 6px 14px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 0.85em;
    color: #444;
    background: #fff;
    cursor: pointer;
}

/* Week navigation */
.pcs-week-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.25em;
}

.pcs-week-label {
    font-weight: 700;
    font-size: 1.4em;
    color: #1a1a1a;
    margin: 0 4px;
}

.pcs-nav-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #2271b1;
    text-decoration: none;
    font-size: 1em;
    transition: background 0.15s;
}

.pcs-nav-arrow:hover {
    background: #e8f0fa;
    text-decoration: none;
}

.pcs-nav-disabled {
    opacity: 0.2;
    cursor: default;
    pointer-events: none;
    color: #999;
}

/* Date header */
.pcs-date-group {
    margin-bottom: 1.5em;
}

.pcs-date-header {
    background: #555;
    color: #fff;
    font-weight: 500;
    font-size: 0.85em;
    padding: 7px 24px;
    border-radius: 2px 2px 0 0;
}

/* Game card */
.pcs-game-row {
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e5e5;
    border-top: none;
    background: #fff;
}

.pcs-game-row:last-child {
    border-radius: 0 0 2px 2px;
}

/* Row 1: venue | time | division */
.pcs-game-meta {
    display: flex;
    align-items: center;
    padding: 5px 24px;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
    gap: 8px;
}

.pcs-game-venue {
    flex: 1;
    font-size: 0.78em;
    color: #2271b1;
    font-weight: 500;
}

.pcs-game-time {
    font-weight: 400;
    font-size: 0.85em;
    color: #888;
    white-space: nowrap;
}

.pcs-div-badge {
    flex: 1;
    text-align: right;
    font-size: 0.78em;
    color: #888;
    margin-left: auto;
    white-space: nowrap;
}

.pcs-friendly-badge {
    color: #7b5e00;
    font-style: italic;
}

/* Row 2: home | score | away */
.pcs-game-teams {
    display: flex;
    align-items: center;
    padding: 10px 24px;
    gap: 16px;
}

/* Home / Away legend row above the day groups — mirrors .pcs-game-teams flex layout */
.pcs-schedule-legend {
    display: flex;
    align-items: center;
    padding: 0 24px 6px;
    gap: 16px;
    font-size: 0.78em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #555;
}

.pcs-schedule-legend .pcs-legend-label {
    flex: 1;
}

.pcs-schedule-legend .pcs-legend-label:first-child {
    text-align: left;
}

.pcs-schedule-legend .pcs-legend-label:last-child {
    text-align: right;
}

.pcs-schedule-legend .pcs-legend-spacer {
    flex-shrink: 0;
    min-width: 96px;
}

.pcs-team {
    flex: 1;
    font-size: 0.92em;
    font-weight: 600;
    color: #444;
}

.pcs-home {
    text-align: left;
}

.pcs-away {
    text-align: right;
}

.pcs-winner {
    color: #111;
}

.pcs-loser {
    color: #aaa;
}

.pcs-score {
    flex-shrink: 0;
    min-width: 96px;
    text-align: center;
    white-space: nowrap;
}

.pcs-result {
    font-weight: 400;
    font-size: 0.92em;
    color: #555;
}

.pcs-vs {
    color: #bbb;
    font-size: 0.88em;
}

@media ( max-width: 480px ) {
    .pcs-game-teams { padding: 6px 8px; }
    .pcs-team { font-size: 0.85em; }
    .pcs-div-badge { display: none; }
}

/* ── Standings ────────────────────────────────────────────────────────────── */

.pcs-standings-division {
    margin-bottom: 2em;
}

.pcs-standings-table .pcs-rank {
    width: 30px;
    text-align: center;
    color: #888;
}

.pcs-standings-table .pcs-team-col {
    width: 40%;
    min-width: 180px;
    font-weight: 500;
}

.pcs-standings-table td:not(.pcs-team-col):not(.pcs-rank) {
    text-align: center;
}

.pcs-standings-table .pcs-pts {
    font-weight: 700 !important;
    color: #1a1a1a;
}

.pcs-standings-table th:not(.pcs-team-col):not(.pcs-rank) {
    text-align: center;
}

/* Scrollable wrapper on small screens */
.pcs-table-wrap {
    overflow-x: auto;
}

@media ( max-width: 640px ) {
    .pcs-table th, .pcs-table td { padding: 6px 6px; font-size: 0.82em; }
}

/* ── Teams directory ──────────────────────────────────────────────────────── */

.pcs-teams-wrap {
    font-size: 0.95em;
}

/* League tabs */
.pcs-league-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.pcs-league-tab {
    padding: 7px 20px;
    font-weight: 600;
    font-size: 0.88em;
    color: #555;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.pcs-league-tab:hover {
    background: #e2e2e2;
    color: #222;
}

.pcs-league-tab-active {
    background: #2271b1;
    color: #fff !important;
    border-color: #2271b1;
}

/* Division filter */
.pcs-div-filter-wrap {
    margin-bottom: 20px;
}

.pcs-div-filter-wrap select {
    padding: 6px 14px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 0.85em;
    color: #444;
    background: #fff;
    cursor: pointer;
}

/* Card grid */
.pcs-team-grid {
    display: grid;
    grid-template-columns: repeat( auto-fill, minmax( 190px, 1fr ) );
    gap: 14px;
}

.pcs-team-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top-width: 3px;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.05 );
    transition: box-shadow 0.15s, transform 0.15s;
}

.pcs-team-card:hover {
    box-shadow: 0 6px 16px rgba( 0, 0, 0, 0.1 );
    transform: translateY( -2px );
}

/* League accent colors — top border */
.pcs-lc-0 { border-top-color: #2271b1; }
.pcs-lc-1 { border-top-color: #1a7f4b; }
.pcs-lc-2 { border-top-color: #c45500; }
.pcs-lc-3 { border-top-color: #8650dc; }

.pcs-card-team-name {
    font-weight: 700;
    font-size: 0.97em;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.pcs-card-div-badge {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    font-size: 0.72em;
    font-weight: 500;
    padding: 2px 9px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.pcs-card-divider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 0 0 10px;
}

.pcs-card-captain-label {
    font-size: 0.72em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #bbb;
    margin-bottom: 4px;
}

.pcs-card-captain-name {
    font-size: 0.88em;
    color: #444;
    line-height: 1.5;
}

.pcs-card-no-captain {
    font-size: 0.85em;
    color: #ccc;
    font-style: italic;
}

.pcs-teams-count {
    font-size: 0.85em;
    color: #999;
    margin: 0 0 14px;
}

.pcs-teams-no-results {
    color: #999;
    font-style: italic;
}

@media ( max-width: 480px ) {
    .pcs-team-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Roster ───────────────────────────────────────────────────────────────── */

.pcs-roster-heading {
    margin-bottom: 0.15em;
}

.pcs-roster-meta {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 1em;
}

.pcs-captain-badge {
    display: inline-block;
    background: #2c3e50;
    color: #fff;
    font-size: 0.75em;
    padding: 2px 8px;
    border-radius: 20px;
    vertical-align: middle;
}

/* ── Waitlist / Registration form ─────────────────────────────────────────── */

.pcs-waitlist-form {
    max-width: 540px;
}

.pcs-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
}

@media ( max-width: 480px ) {
    .pcs-field-row { grid-template-columns: 1fr; }
}

.pcs-field {
    margin-bottom: 1em;
}

.pcs-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.9em;
}

.pcs-field input,
.pcs-field select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 1em;
    box-sizing: border-box;
}

.pcs-field input:focus,
.pcs-field select:focus {
    outline: none;
    border-color: #2c3e50;
    box-shadow: 0 0 0 2px rgba(44,62,80,0.15);
}

.pcs-required {
    color: #c00;
}

.pcs-field-hint {
    font-size: 0.82em;
    color: #888;
    margin-top: 4px;
}

.pcs-privacy {
    color: #999;
    font-size: 0.82em;
}

.pcs-submit-btn {
    display: inline-block;
    padding: 10px 28px;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5em;
}

.pcs-submit-btn:hover {
    background: #1a252f;
}

.pcs-success {
    background: #edfaef;
    border: 1px solid #52c41a;
    border-radius: 4px;
    padding: 16px 20px;
    color: #135200;
    font-weight: 500;
    margin-bottom: 1em;
}

.pcs-errors {
    background: #fff2f0;
    border: 1px solid #ffccc7;
    border-radius: 4px;
    padding: 12px 16px;
    color: #a8071a;
    margin-bottom: 1em;
}

.pcs-errors ul {
    margin: 0;
    padding-left: 1.25em;
}

.pcs-warning {
    background: #fffbe6;
    border: 1px solid #ffe58f;
    border-radius: 4px;
    padding: 12px 16px;
    color: #7c5700;
    margin-bottom: 1em;
}

/* ── Captain forms ────────────────────────────────────────────────────────── */

.pcs-captain-form {
    max-width: 600px;
}

.pcs-form-section-heading {
    font-size: 1em;
    font-weight: 700;
    margin: 0 0 0.6em;
    color: #1a1a1a;
}

/* Three-part name row: first / M.I. / last */
.pcs-name-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 1em;
}

.pcs-name-row .pcs-field {
    flex: 1;
    margin-bottom: 0;
}

.pcs-name-row .pcs-mi-field {
    flex: 0 0 64px;
}

/* Dynamic player rows */
.pcs-player-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}

.pcs-player-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}

.pcs-player-row input[type="text"] {
    flex: 1;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 0.9em;
    box-sizing: border-box;
    min-width: 0;
}

.pcs-player-row .pcs-mi-input {
    flex: 0 0 44px;
}

.pcs-player-row.pcs-unregistered input[type="text"] {
    border-color: #ff4d4f;
    background: #fff2f0;
}

.pcs-not-registered {
    font-size: 0.75em;
    color: #cf1322;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.pcs-remove-row {
    flex-shrink: 0;
    background: none;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    cursor: pointer;
    color: #999;
    font-size: 1em;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.1s, border-color 0.1s, color 0.1s;
}

.pcs-remove-row:hover {
    background: #fff1f0;
    border-color: #ff4d4f;
    color: #cf1322;
}

.pcs-add-row-btn {
    background: none;
    border: 1px dashed #bbb;
    border-radius: 4px;
    padding: 5px 14px;
    font-size: 0.85em;
    color: #555;
    cursor: pointer;
    margin-top: 2px;
    transition: border-color 0.1s, color 0.1s, background 0.1s;
}

.pcs-add-row-btn:hover {
    border-color: #2271b1;
    color: #2271b1;
    background: #f0f6ff;
}

/* Team code display on confirmation */
.pcs-team-code-display {
    display: inline-block;
    font-family: monospace;
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 4px;
    background: #f0f9eb;
    color: #135200;
    padding: 6px 18px;
    border-radius: 4px;
    border: 1px solid #b7eb8f;
    margin: 4px 0 8px;
}

/* Monospace code input (verify step) */
.pcs-code-input {
    font-family: monospace;
    font-size: 1.1em;
    letter-spacing: 3px;
    text-transform: uppercase;
    width: 10em !important;
}

/* Roster checklist (join-team step 2) */
.pcs-roster-checklist {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.pcs-roster-check-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1em;
    cursor: pointer;
    padding: 10px 0;
    user-select: none;
}

.pcs-roster-check-row .pcs-player-thumb-sm {
    width: 52px;
    height: 52px;
}

.pcs-roster-check-row input[type="checkbox"] {
    flex-shrink: 0;
}

.pcs-roster-check-row:has(input:checked) > .pcs-roster-player-info {
    text-decoration: line-through;
    color: #aaa;
}

.pcs-role-select {
    flex-shrink: 0;
    font-size: 0.85em;
    padding: 2px 4px;
}

.pcs-roster-check-row:has(input:checked) .pcs-role-select {
    opacity: 0.4;
    pointer-events: none;
}

@media ( max-width: 480px ) {
    .pcs-name-row { flex-wrap: wrap; }
    .pcs-name-row .pcs-mi-field { flex: 0 0 56px; }
}

/* ── File upload / photo crop ─────────────────────────────────────────────── */

.pcs-file-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.pcs-photo-pick-btn {
    display: inline-block;
    padding: 7px 18px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    color: #333;
    margin-bottom: 6px;
    transition: background 0.1s;
}

.pcs-photo-pick-btn:hover {
    background: #e2e2e2;
}

.pcs-crop-container {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

/* Circular crop overlay */
.cropper-view-box,
.cropper-face {
    border-radius: 50%;
}

.pcs-crop-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.pcs-crop-secondary-btn {
    background: none;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 8px 18px;
    font-size: 0.9em;
    cursor: pointer;
    color: #555;
    display: block;
    transition: border-color 0.1s, color 0.1s;
}

.pcs-crop-secondary-btn:hover {
    border-color: #888;
    color: #222;
}

.pcs-photo-preview-thumb {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e0e0;
    display: block;
}

.pcs-field-hint-inline {
    font-weight: 400;
    font-size: 0.85em;
    color: #888;
}

/* ── Player photos ────────────────────────────────────────────────────────── */

.pcs-player-thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.pcs-player-thumb-sm {
    width: 26px;
    height: 26px;
}

.pcs-player-no-photo {
    background: #e8e8e8;
}

/* ── Suspended tag ────────────────────────────────────────────────────────── */

.pcs-suspended-tag {
    display: inline-block;
    background: #ff4d4f;
    color: #fff;
    font-size: 0.72em;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.pcs-suspended-tag-sm {
    font-size: 0.65em;
    padding: 1px 6px;
}

/* ── Roster table player row ──────────────────────────────────────────────── */

.pcs-roster-player-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pcs-roster-name {
    flex: 1;
}

.pcs-roster-status-col {
    text-align: right;
    white-space: nowrap;
}

/* ── Team card roster section ─────────────────────────────────────────────── */

.pcs-card-roster-label {
    font-size: 0.72em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #bbb;
    margin-bottom: 6px;
}

.pcs-card-roster {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pcs-card-player-row {
    display: flex;
    align-items: center;
    gap: 7px;
}

.pcs-card-player-name {
    flex: 1;
    font-size: 0.85em;
    color: #444;
    line-height: 1.4;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── Team card — clickable ────────────────────────────────────────────────── */

.pcs-team-card {
    cursor: pointer;
}

.pcs-team-card:focus-visible {
    outline: 2px solid #2271b1;
    outline-offset: 2px;
}

/* ── Team roster modal ────────────────────────────────────────────────────── */

.pcs-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba( 0, 0, 0, 0.65 );
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pcs-modal-overlay[hidden] {
    display: none;
}

.pcs-modal-box {
    background: #fff;
    border-radius: 10px;
    padding: 28px 32px 24px;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 16px 48px rgba( 0, 0, 0, 0.3 );
}

.pcs-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.6em;
    line-height: 1;
    cursor: pointer;
    color: #aaa;
    padding: 2px 6px;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
}

.pcs-modal-close:hover {
    color: #333;
    background: #f5f5f5;
}

.pcs-modal-team-name {
    font-size: 1.4em;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    padding-right: 36px;
    line-height: 1.25;
}

.pcs-modal-meta {
    font-size: 0.85em;
    color: #888;
    margin-bottom: 8px;
}

.pcs-modal-captain-row {
    font-size: 0.88em;
    color: #444;
    margin-bottom: 14px;
}

.pcs-modal-caption-label {
    font-size: 0.78em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #bbb;
    margin-right: 4px;
}

.pcs-modal-divider {
    border-top: 1px solid #f0f0f0;
    margin: 0 0 14px;
}

.pcs-modal-players {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pcs-modal-player-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pcs-modal-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    border: 2px solid #f0f0f0;
}

.pcs-modal-player-name {
    flex: 1;
    font-size: 1em;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
}

@media ( max-width: 600px ) {
    .pcs-modal-box { padding: 20px 16px 18px; }
    .pcs-modal-photo { width: 72px; height: 72px; }
    .pcs-modal-team-name { font-size: 1.2em; }
    .pcs-modal-player-row { gap: 10px; }
}

/* ── Waiver pane ──────────────────────────────────────────────────────────── */

.pcs-waiver-pane {
    height: 280px;
    overflow-y: scroll;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 18px 20px;
    font-size: 13px;
    line-height: 1.65;
    background: #fafafa;
    color: #444;
    margin-bottom: 8px;
}

.pcs-waiver-pane h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 14px;
    text-align: center;
    line-height: 1.4;
}

.pcs-waiver-pane p {
    margin: 0 0 10px;
}

.pcs-waiver-scroll-notice {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    text-align: center;
}

.pcs-waiver-scroll-notice.pcs-scrolled {
    color: #46b450;
}

.pcs-waiver-agree-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.pcs-waiver-agree-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.pcs-waiver-agree-row input[type="checkbox"]:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pcs-waiver-agree-row input[type="checkbox"]:disabled + label {
    color: #aaa;
    cursor: not-allowed;
}

/* ── Minor / guardian section ─────────────────────────────────────────────── */

.pcs-minor-section {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 6px;
    padding: 16px 18px;
    margin-bottom: 16px;
}

.pcs-minor-section-title {
    font-weight: 700;
    font-size: 14px;
    color: #e65100;
    margin-bottom: 8px;
}

.pcs-minor-section p {
    font-size: 13px;
    color: #555;
    margin: 0 0 12px;
}
