:root {
    font-family: Arial, sans-serif;
    color: #222;
    background: #f4f6f8;
}

body {
    margin: 0;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 5%;
    background: #fff;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}

.brand img {
    max-height: 54px;
    max-width: 260px;
}

nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

nav a {
    color: #184d7a;
    text-decoration: none;
}

main {
    max-width: 1100px;
    margin: 28px auto;
    padding: 0 18px;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin: 14px 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

.narrow-card {
    max-width: 720px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.team-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-card .button {
    align-self: flex-start;
    margin-top: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

th,
td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 16px;
    border: 0;
    border-radius: 6px;
    background: #1769aa;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.2;
}

.button:hover,
button:hover {
    background: #0f568f;
}

.form-card form {
    margin-top: 18px;
}

.form-grid {
    display: grid;
    gap: 16px;
}

.form-grid.two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-group {
    margin-bottom: 16px;
}

label,
legend {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
}

input,
select,
textarea {
    width: 100%;
    max-width: 100%;
    padding: 10px 11px;
    border: 1px solid #bfc8d2;
    border-radius: 6px;
    box-sizing: border-box;
    font: inherit;
    background: #fff;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(23, 105, 170, .18);
    border-color: #1769aa;
}

input[type="checkbox"] {
    width: auto;
    max-width: none;
    margin: 0;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.check-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    margin: 0 0 18px;
}

.validation,
.field-validation,
.field-validation-error {
    color: #a00;
}

.field-validation,
.field-validation-error {
    display: block;
    font-size: .9rem;
    margin-top: 4px;
}

.alert-success {
    background: #eaf7ec;
    border: 1px solid #b7dfbf;
    border-radius: 8px;
    padding: 12px 14px;
    margin: 12px 0;
    color: #245c2f;
}

.muted {
    color: #666;
}

.team-header {
    padding: 16px;
    border-radius: 8px;
}

.modal-card {
    border-left: 4px solid #1769aa;
    padding-left: 14px;
}

.team-picker-fieldset {
    border: 1px solid #d4dce5;
    border-radius: 10px;
    padding: 16px;
    margin: 18px 0 0;
}

.team-picker-fieldset legend {
    padding: 0 8px;
}

.team-picker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 12px;
}

.checkbox-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 48px;
    padding: 12px;
    border: 1px solid #d4dce5;
    border-radius: 8px;
    background: #f9fbfd;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-card:hover {
    border-color: #1769aa;
    background: #f3f8fc;
}

.checkbox-card input {
    margin-top: 3px;
}

.checkbox-card span {
    display: grid;
    gap: 3px;
}

.checkbox-card small {
    color: #666;
}

.readonly-section {
    margin: 18px 0;
}

.tag-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0;
    margin: 8px 0 0;
    list-style: none;
}

.tag-list li {
    background: #eef3f8;
    border: 1px solid #d4dce5;
    border-radius: 999px;
    padding: 6px 10px;
}

@media (max-width: 700px) {
    header {
        align-items: flex-start;
    }

    .form-grid.two-column {
        grid-template-columns: 1fr;
    }

    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button,
    button {
        width: 100%;
    }
}

.admin-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    background: #eef6ff;
    border: 1px solid #cce2f6;
    color: #184d7a;
    font-weight: 700;
    font-size: .9rem;
}

.section-title-row,
.team-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.admin-section {
    border-color: #cce2f6;
}

.admin-tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}

.admin-tool {
    border: 1px solid #d4dce5;
    border-radius: 10px;
    background: #fbfcfe;
    overflow: hidden;
}

.admin-tool > summary {
    cursor: pointer;
    list-style: none;
    padding: 14px 16px;
    font-weight: 700;
    background: #f2f6fa;
    border-bottom: 1px solid #d4dce5;
}

.admin-tool > summary::-webkit-details-marker {
    display: none;
}

.admin-tool > summary::after {
    content: "+";
    float: right;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    min-width: 1.5rem;
    font-size: 1.25rem;
    line-height: 1;
}

.admin-tool[open] > summary::after {
    content: "\2212";
}

.compact-form,
.block-form {
    border: 0;
    box-shadow: none;
    margin: 0;
    border-radius: 0;
}

.form-grid.three-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.full-width {
    grid-column: 1 / -1;
}

.small-input {
    max-width: 150px;
}

.form-fieldset {
    border: 1px solid #d4dce5;
    border-radius: 10px;
    margin: 0 0 18px;
    padding: 16px;
}

.form-fieldset legend {
    padding: 0 8px;
}

.hint {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: .9rem;
}

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

.list-row {
    display: grid;
    gap: 3px;
    padding: 10px 0;
    border-bottom: 1px solid #eef1f4;
}

.list-row:last-child {
    border-bottom: 0;
}

.table-wrap {
    overflow-x: auto;
}

.tournament-card {
    margin-top: 18px;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    margin-top: 12px;
}

.hotel-card {
    background: #fbfcfe;
    border: 1px solid #e1e7ee;
    border-left: 4px solid #1769aa;
    border-radius: 8px;
    padding: 14px;
}

.block-tool {
    margin-top: 18px;
}

@media (max-width: 900px) {
    .form-grid.three-column {
        grid-template-columns: 1fr;
    }

    .admin-tool-grid {
        grid-template-columns: 1fr;
    }
}

.url-entry-list {
    display: grid;
    gap: 12px;
}

.url-entry-row {
    display: grid;
    grid-template-columns: minmax(160px, .8fr) minmax(240px, 1.4fr) minmax(180px, 1fr);
    gap: 14px;
    align-items: end;
    padding: 12px;
    border: 1px solid #e1e7ee;
    border-radius: 8px;
    background: #fbfcfe;
}

.url-entry-row .form-group {
    margin-bottom: 0;
}

.url-link-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 12px 0;
}

.secondary-button {
    background: #eef6ff;
    border: 1px solid #cce2f6;
    color: #184d7a;
}

.secondary-button:hover {
    background: #dceeff;
}

@media (max-width: 900px) {
    .url-entry-row {
        grid-template-columns: 1fr;
    }
}

.tournament-summary-grid {
    display: grid;
    grid-template-columns: minmax(200px, .8fr) minmax(360px, 1.4fr) auto;
    gap: 18px;
    align-items: start;
}

.tournament-primary h3 {
    margin-bottom: 8px;
}

.tournament-meta-line {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: #4d5966;
}

.tournament-meta-line span + span::before {
    content: "\00B7";
    margin-right: 10px;
    color: #9aa7b4;
}

.tournament-detail-panel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 10px;
    line-height: 1.45;
}

.data-label {
    font-weight: 700;
    color: #17202a;
}

.team-data-label {
    margin-top: 4px;
}

.tournament-link-panel {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.hotel-list {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.hotel-card-wide {
    background: #fbfcfe;
    border: 1px solid #e1e7ee;
    border-left: 4px solid #1769aa;
    border-radius: 8px;
    padding: 16px;
}

.hotel-wide-main {
    display: grid;
    grid-template-columns: minmax(210px, .8fr) minmax(430px, 1.4fr) auto;
    gap: 16px;
    align-items: start;
}

.hotel-wide-title h4 {
    margin-bottom: 5px;
}

.hotel-fact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(105px, 1fr));
    gap: 12px;
}

.hotel-fact-grid > div {
    min-width: 0;
}

.hotel-fact-grid span {
    display: block;
    color: #657180;
    font-size: .85rem;
    margin-bottom: 3px;
}

.hotel-fact-grid strong {
    display: block;
    overflow-wrap: anywhere;
}

.wide-fact {
    grid-column: 1 / -1;
}

.hotel-action-panel {
    display: flex;
    justify-content: flex-end;
    align-items: start;
}

.block-note-list {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fff8e8;
    border: 1px solid #f0dfb8;
}

.block-note-list p {
    margin: 0 0 8px;
}

.block-note-list p:last-child {
    margin-bottom: 0;
}

.user-block-tool {
    margin-top: 12px;
    border: 1px solid #d4dce5;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.user-block-tool > summary {
    cursor: pointer;
    padding: 11px 13px;
    font-weight: 700;
    background: #f2f6fa;
    list-style: none;
}

.user-block-tool > summary::-webkit-details-marker {
    display: none;
}

.user-block-tool > summary::after {
    content: "+";
    float: right;
    font-size: 1.1rem;
}

.user-block-tool[open] > summary::after {
    content: "\2212";
}

.user-block-form {
    padding: 14px;
}

.user-block-form .form-group {
    margin-bottom: 10px;
}

.compact-actions {
    margin-top: 8px;
}

@media (max-width: 980px) {
    .tournament-summary-grid,
    .hotel-wide-main {
        grid-template-columns: 1fr;
    }

    .tournament-link-panel,
    .hotel-action-panel {
        justify-content: flex-start;
    }

    .hotel-fact-grid {
        grid-template-columns: repeat(2, minmax(110px, 1fr));
    }
}

@media (max-width: 620px) {
    .tournament-detail-panel {
        grid-template-columns: 1fr;
    }

    .hotel-fact-grid {
        grid-template-columns: 1fr;
    }
}

.room-type-list {
    display: grid;
    gap: 10px;
}

.room-type-row {
    display: grid;
    grid-template-columns: minmax(220px, 1.5fr) minmax(90px, .5fr) minmax(110px, .6fr);
    gap: 12px;
    align-items: end;
    padding: 10px;
    border: 1px solid #e1e7ee;
    border-radius: 8px;
    background: #fbfcfe;
}

.room-type-row .form-group {
    margin-bottom: 0;
}

.deadline-fact {
    min-width: 170px;
}

.deadline-fact strong {
    white-space: nowrap;
    overflow-wrap: normal;
}

.room-fact {
    min-width: 190px;
}

.room-list {
    display: grid;
    gap: 3px;
    font-weight: 700;
    line-height: 1.2;
}

.room-line {
    display: block;
}

@media (max-width: 900px) {
    .room-type-row {
        grid-template-columns: 1fr;
    }

    .deadline-fact strong {
        white-space: normal;
    }
}

.hotel-card-wide .hotel-fact-grid {
    grid-template-columns: minmax(95px, .8fr) minmax(95px, .8fr) minmax(175px, 1.15fr) minmax(190px, 1.25fr);
}

@media (max-width: 980px) {
    .hotel-card-wide .hotel-fact-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }
}


/* organizeyour.club skin -------------------------------------------------- */
:root {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: #102033;
    background: #eef5fb;
    --oyc-navy: #092f57;
    --oyc-blue: #1769aa;
    --oyc-sky: #21a6e8;
    --oyc-ice: #eaf6ff;
    --oyc-orange: #f5a000;
    --oyc-red: #e6402e;
    --oyc-ink: #102033;
    --oyc-muted: #5d6d7e;
    --oyc-line: #cfe0ee;
    --oyc-card: rgba(255, 255, 255, .94);
    --oyc-shadow: 0 18px 45px rgba(9, 47, 87, .12);
    --oyc-soft-shadow: 0 8px 22px rgba(9, 47, 87, .08);
    --oyc-radius: 18px;
}

html {
    min-height: 100%;
    background:
        radial-gradient(circle at 12% 5%, rgba(33, 166, 232, .20), transparent 32rem),
        radial-gradient(circle at 92% 0%, rgba(245, 160, 0, .16), transparent 28rem),
        linear-gradient(180deg, #f7fbff 0%, #eef5fb 48%, #e8f0f8 100%);
}

body {
    min-height: 100%;
    color: var(--oyc-ink);
    background: transparent;
}

.site-header,
header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px clamp(18px, 4vw, 56px);
    background: rgba(250, 248, 244, .98);
    border-bottom: 1px solid #d5dde5;
    box-shadow: 0 8px 24px rgba(9, 47, 87, .12);
    backdrop-filter: blur(14px);
    flex-wrap: wrap;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    text-decoration: none;
}

.brand img {
    display: block;
    width: clamp(210px, 24vw, 330px);
    max-width: 42vw;
    max-height: 78px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .28));
}

.site-nav,
nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.site-nav a,
nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #123f68;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .01em;
}

.site-nav a:hover,
nav a:hover {
    color: #075f9e;
    background: #e4eef6;
}

.site-main,
main {
    max-width: 1375px;
    margin: 28px auto 54px;
    padding: 0 clamp(14px, 3vw, 28px);
}

h1,
h2,
h3,
h4 {
    color: #0b1f36;
    letter-spacing: -.035em;
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.05rem, 2.7vw, 3.15rem);
}

h2 {
    font-size: clamp(1.55rem, 2vw, 2rem);
}

h3 {
    font-size: clamp(1.35rem, 1.5vw, 1.65rem);
}

a {
    color: #075f9e;
}

.card {
    background: var(--oyc-card);
    border: 1px solid rgba(207, 224, 238, .95);
    border-radius: var(--oyc-radius);
    box-shadow: var(--oyc-soft-shadow);
}

.home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    gap: clamp(20px, 4vw, 48px);
    align-items: center;
    overflow: hidden;
    padding: clamp(22px, 4vw, 42px);
    background:
        radial-gradient(circle at 88% 20%, rgba(33, 166, 232, .25), transparent 22rem),
        linear-gradient(135deg, #ffffff 0%, #f4fbff 50%, #eaf6ff 100%);
    border-color: rgba(23, 105, 170, .18);
    box-shadow: var(--oyc-shadow);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: auto -8% -32% 52%;
    height: 220px;
    background: radial-gradient(circle, rgba(245, 160, 0, .25), transparent 70%);
    pointer-events: none;
}

.home-hero-copy {
    position: relative;
    z-index: 1;
}


.landing-wordmark {
    display: block;
    width: min(100%, 560px);
    max-height: 128px;
    object-fit: contain;
    margin: 0 auto 14px;
    filter: drop-shadow(0 14px 24px rgba(9, 47, 87, .20));
}

.home-hero-copy h1 {
    margin-bottom: 12px;
}

.home-hero-copy p {
    max-width: 760px;
    margin: 0;
    color: var(--oyc-muted);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.55;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff7df;
    border: 1px solid rgba(245, 160, 0, .32);
    color: #805400;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--oyc-orange);
    box-shadow: 0 0 0 5px rgba(245, 160, 0, .16);
}

.home-hero-logo {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 20px 35px rgba(9, 47, 87, .22));
}

.button,
button {
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1769aa 0%, #0e83ca 100%);
    box-shadow: 0 8px 18px rgba(23, 105, 170, .22);
    font-weight: 800;
}

.button:hover,
button:hover {
    background: linear-gradient(135deg, #0d578e 0%, #0672b7 100%);
    transform: translateY(-1px);
}

.secondary-button {
    background: #eef8ff;
    border: 1px solid #bfdcf2;
    color: #0b4f86;
    box-shadow: none;
}

.secondary-button:hover {
    background: #dff1ff;
    color: #073a68;
}

input,
select,
textarea {
    border-color: #c2d2df;
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75);
}

input:focus,
select:focus,
textarea:focus {
    outline: 4px solid rgba(33, 166, 232, .18);
    border-color: var(--oyc-sky);
}

label,
legend {
    color: #17314c;
}

.muted {
    color: var(--oyc-muted);
}

.grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
}

.team-card {
    position: relative;
    overflow: hidden;
    min-height: 178px;
    border-top: 5px solid var(--oyc-sky);
}

.team-card::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -48px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(245, 160, 0, .22), transparent 70%);
    pointer-events: none;
}

.team-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--oyc-shadow);
}

.team-header {
    padding: clamp(20px, 3vw, 32px);
    background:
        radial-gradient(circle at 93% 15%, rgba(33, 166, 232, .22), transparent 18rem),
        linear-gradient(135deg, #ffffff 0%, #f6fbff 100%);
    border-left: 7px solid var(--oyc-blue);
}

.admin-pill {
    border-color: rgba(245, 160, 0, .36);
    background: #fff7df;
    color: #7b5100;
}

.admin-section {
    border-color: rgba(245, 160, 0, .28);
    background: linear-gradient(180deg, rgba(255, 253, 248, .98) 0%, rgba(255, 255, 255, .95) 100%);
}

.admin-tool {
    border-color: #cddfee;
    border-radius: 14px;
    background: #fff;
}

.admin-tool > summary,
.user-block-tool > summary {
    background: linear-gradient(180deg, #f6fbff 0%, #edf6fe 100%);
    color: #12375b;
}

.admin-tool > summary::after,
.user-block-tool > summary::after {
    color: var(--oyc-orange);
    font-weight: 900;
}

.team-picker-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.checkbox-card {
    border-radius: 14px;
    background: #fff;
    border-color: #cddfee;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.checkbox-card:hover {
    border-color: var(--oyc-sky);
    background: #f8fcff;
    box-shadow: 0 8px 18px rgba(23, 105, 170, .10);
    transform: translateY(-1px);
}

.tag-list li {
    background: #eef8ff;
    border-color: #c4dff4;
    color: #0d4778;
    font-weight: 700;
}

.tournament-card {
    position: relative;
    overflow: hidden;
    padding: clamp(18px, 2.4vw, 26px);
}

.tournament-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--oyc-blue), var(--oyc-sky), var(--oyc-orange));
}

.tournament-summary-grid {
    grid-template-columns: minmax(220px, .75fr) minmax(420px, 1.35fr) minmax(230px, auto);
}

.tournament-meta-line {
    color: var(--oyc-muted);
    font-size: 1rem;
}

.tournament-link-panel .button {
    min-height: 52px;
    padding-inline: 20px;
    border-radius: 12px;
}

.hotel-list {
    gap: 16px;
}

.hotel-card-wide {
    position: relative;
    border-radius: 16px;
    border-color: #d5e5f1;
    border-left: 6px solid var(--oyc-blue);
    background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
    box-shadow: 0 10px 26px rgba(9, 47, 87, .08);
}

.hotel-card-wide:hover {
    border-left-color: var(--oyc-sky);
}

.hotel-wide-main {
    grid-template-columns: minmax(230px, .76fr) minmax(500px, 1.4fr) minmax(135px, auto);
}

.hotel-wide-title h4 {
    color: #0b243f;
    font-size: 1.24rem;
}

.hotel-fact-grid {
    align-items: start;
}

.hotel-fact-grid span {
    color: #607285;
    font-weight: 700;
    letter-spacing: .01em;
}

.hotel-fact-grid strong,
.room-list {
    color: #051b31;
    font-size: 1.02rem;
}

.room-list {
    gap: 7px;
    line-height: 1.35;
}

.room-line {
    position: relative;
    padding-left: 14px;
}

.room-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--oyc-orange);
}

.block-note-list {
    margin-top: 14px;
    padding: 13px 15px;
    border-radius: 14px;
    background: #fff8e8;
    border-color: #ecd597;
    color: #513500;
}

.user-block-tool {
    margin-top: 14px;
    border-radius: 14px;
    border-color: #cddfee;
}

.alert-success {
    background: #eaf9f1;
    border-color: #b8e5cc;
    color: #1d653a;
    border-radius: 14px;
}

.validation,
.field-validation,
.field-validation-error {
    color: #b02318;
    font-weight: 700;
}

table {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 0 1px #dbe6ef;
}

th {
    background: #eff7ff;
    color: #12375b;
}

td,
th {
    border-bottom-color: #e5edf4;
}

@media (max-width: 980px) {
    .home-hero {
        grid-template-columns: 1fr;
    }

    .home-hero-logo {
        max-height: 240px;
        justify-self: center;
    }

    .tournament-summary-grid,
    .hotel-wide-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .site-header,
    header {
        position: static;
        align-items: center;
    }

    .brand img {
        width: 230px;
        max-width: 75vw;
    }

    .site-nav,
    nav {
        width: 100%;
        justify-content: center;
    }

    .site-nav a,
    nav a {
        flex: 1 1 auto;
        justify-content: center;
        color: #123f68;
        background: #eef4f9;
    }

    .home-hero {
        padding: 20px;
    }
}

/* Header / account-logo positioning updates -------------------------------- */
.site-header,
header {
    padding-top: 8px;
    padding-bottom: 8px;
}

.brand {
    min-height: 46px;
    justify-content: flex-start;
}

.brand img {
    width: clamp(235px, 19vw, 345px);
    max-width: 48vw;
    max-height: 46px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 7px 14px rgba(0, 0, 0, .24));
}

.account-logo-strip {
    display: flex;
    justify-content: center;
    padding: 24px clamp(14px, 3vw, 28px) 0;
}

.account-logo-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    max-width: min(620px, 88vw);
    padding: 16px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(207, 224, 238, .88);
    box-shadow: 0 12px 32px rgba(9, 47, 87, .10);
    text-decoration: none;
}

.account-logo-link img {
    display: block;
    max-width: min(520px, 78vw);
    max-height: 120px;
    object-fit: contain;
}

.compact-home-hero {
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 10px;
}

.compact-home-hero .home-hero-copy {
    max-width: 900px;
    margin: 0 auto;
}

.compact-home-hero .home-hero-copy p {
    margin: 0 auto;
}

/* Public marketing page ---------------------------------------------------- */
.marketing-hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.home-hero-copy .marketing-proof {
    margin-top: 18px;
    color: #526579;
    font-size: .92rem;
    font-weight: 700;
}

.marketing-section {
    padding: clamp(42px, 7vw, 76px) 0;
    scroll-margin-top: 88px;
}

.marketing-section-heading {
    max-width: 780px;
    margin: 0 auto 30px;
    text-align: center;
}

.marketing-section-heading h2,
.marketing-contact h2 {
    margin: 0 0 12px;
    color: #102a4c;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1.12;
}

.marketing-section-heading p,
.marketing-contact p,
.marketing-feature-card p,
.marketing-audience-grid p,
.marketing-steps p,
.faq-list p,
.public-price-card p {
    color: var(--oyc-muted);
    line-height: 1.65;
}

.marketing-card-grid,
.marketing-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.marketing-feature-card {
    padding: 24px;
}

.marketing-feature-card h3,
.marketing-audience-grid h3,
.marketing-steps h3,
.public-price-card h3 {
    margin: 0 0 8px;
    color: #102a4c;
}

.marketing-feature-card p,
.marketing-audience-grid p,
.marketing-steps p,
.public-price-card p {
    margin: 0;
}

.marketing-icon {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: #e8f5ff;
    color: #0b6cab;
    font-size: 1.35rem;
    font-weight: 900;
}

.marketing-tinted {
    position: relative;
    padding-left: clamp(18px, 4vw, 42px);
    padding-right: clamp(18px, 4vw, 42px);
    border: 1px solid #d8e8f4;
    border-radius: 24px;
    background: linear-gradient(135deg, #f8fcff, #edf7ff);
}

.marketing-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.marketing-steps li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.marketing-steps li > span {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1769aa;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(23, 105, 170, .2);
}

.marketing-audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.marketing-audience-grid .card {
    border-top: 4px solid #1697d5;
}

.public-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 340px));
    justify-content: center;
    gap: 20px;
}

.public-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 28px;
}

.public-price-card > div:not(.price-badge) {
    display: flex;
    align-items: baseline;
    gap: 9px;
}

.public-price-card strong {
    color: #1d3557;
    font-size: 3.15rem;
    line-height: 1;
}

.public-price-card span {
    color: #526579;
    font-weight: 700;
}

.public-price-card p {
    flex: 1;
}

.featured-price-card {
    border: 2px solid #1685c5;
    box-shadow: 0 18px 38px rgba(17, 105, 167, .16);
}

.price-badge {
    align-self: flex-start;
    padding: 5px 10px;
    border-radius: 999px;
    background: #fff1cf;
    color: #805400;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.marketing-fine-print {
    margin: 22px auto 0;
    color: #64778a;
    font-size: .9rem;
    text-align: center;
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-list details {
    padding: 0;
}

.faq-list summary {
    padding: 19px 22px;
    color: #102a4c;
    font-size: 1.06rem;
    font-weight: 800;
    cursor: pointer;
}

.faq-list details[open] summary {
    border-bottom: 1px solid #e2ebf2;
}

.faq-list p {
    margin: 0;
    padding: 18px 22px 22px;
}

.marketing-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 40px;
    padding: clamp(26px, 5vw, 46px);
    background: linear-gradient(135deg, #ffffff, #edf8ff);
}

.marketing-contact > div:first-child {
    max-width: 720px;
}

.marketing-contact-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.marketing-contact-actions span {
    flex-basis: 100%;
    color: #526579;
    font-size: .9rem;
    text-align: right;
}

.club-picker-shell {
    max-width: 980px;
    margin: 28px auto;
    padding: clamp(24px, 5vw, 44px);
}

.club-picker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 340px));
    justify-content: center;
    gap: 20px;
}

.club-picker-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.club-picker-card h2,
.club-picker-card p { margin: 0; }

.club-picker-card p { color: var(--oyc-muted); }

.club-picker-logo {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 112px;
    padding: 12px;
    border-radius: 14px;
    background: #f2f8fc;
}

.club-picker-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.club-picker-logo span {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #1769aa;
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
}

.account-club-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.account-clubs-card {
    padding: 24px;
}

.account-clubs-header {
    align-items: center;
}

.account-clubs-header h2,
.account-clubs-header p {
    margin-top: 0;
}

.account-clubs-header p {
    margin-bottom: 0;
}

.account-club-create {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: .92rem;
}

.account-club-row {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 82px;
    padding: 10px 14px;
    border: 1px solid #d8e6f0;
    border-radius: 12px;
    background: #fff;
}

.account-club-logo {
    display: grid;
    place-items: center;
    width: 72px;
    height: 58px;
}

.account-club-logo img {
    max-width: 72px;
    max-height: 58px;
    object-fit: contain;
}

.account-club-logo span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #1769aa;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 900;
}

.account-club-logo [hidden] {
    display: none !important;
}

.account-club-details {
    display: grid;
    justify-items: start;
    gap: 2px;
}

.account-club-details strong {
    font-size: 1.02rem;
}

.account-club-details a {
    font-size: .92rem;
}

.account-club-role {
    margin-top: 3px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #edf4f9;
    color: #536b7e;
    font-size: .75rem;
    font-weight: 700;
}

.account-club-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.account-club-actions form {
    margin: 0;
}

.account-club-actions .account-club-open,
.account-club-actions .account-club-remove {
    min-height: 36px;
    padding: 7px 12px;
    border-radius: 9px;
    box-shadow: none;
    font-size: .88rem;
}

.account-club-actions .account-club-remove {
    border: 1px solid transparent;
    background: transparent;
    color: #9b2c24;
}

.account-club-actions .account-club-remove:hover {
    border-color: #f0cbc7;
    background: #fff3f2;
    color: #7e211b;
    transform: none;
}

@media (max-width: 700px) {
    .account-clubs-card {
        padding: 18px;
    }

    .account-clubs-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-club-create {
        width: auto;
    }

    .account-club-row {
        grid-template-columns: 58px minmax(0, 1fr);
        padding: 12px;
    }

    .account-club-logo {
        width: 58px;
    }

    .account-club-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
        padding-top: 4px;
    }

    .account-club-actions .account-club-open,
    .account-club-actions .account-club-remove {
        width: auto;
    }
}

@media (max-width: 850px) {
    .marketing-steps,
    .marketing-audience-grid {
        grid-template-columns: 1fr;
    }

    .marketing-contact {
        align-items: flex-start;
        flex-direction: column;
    }

    .marketing-contact-actions {
        justify-content: flex-start;
    }

    .marketing-contact-actions span {
        text-align: left;
    }
}

@media (max-width: 700px) {
    .marketing-card-grid,
    .public-pricing-grid {
        grid-template-columns: 1fr;
    }

    .marketing-section {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .marketing-tinted {
        padding-left: 16px;
        padding-right: 16px;
        border-radius: 18px;
    }

    .marketing-hero-actions,
    .marketing-contact-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 700px) {
    .brand img {
        width: 245px;
        max-width: 78vw;
        max-height: 42px;
    }

    .account-logo-strip {
        padding-top: 16px;
    }

    .account-logo-link {
        padding: 12px 16px;
    }

    .account-logo-link img {
        max-height: 86px;
    }
}

.map-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted rgba(45, 113, 183, .55);
}

.map-link:hover,
.map-link:focus {
    color: var(--brand-blue, #286fb4);
    border-bottom-style: solid;
}

.alert-warning {
    background: #fff8e6;
    border: 1px solid #f0d18a;
    border-radius: 12px;
    color: #6d4a00;
    margin: 12px 0;
    padding: 12px 14px;
}

.form-section {
    border-top: 1px solid #e2e8f0;
    margin-top: 18px;
    padding-top: 18px;
}

.form-section:first-of-type {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
}

.admin-add-team-card {
    margin-bottom: 22px;
}

/* Annual billing and business-owner support tools */
.super-admin-banner {
    align-items: center;
    background: #34235f;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
    justify-content: center;
    padding: .75rem 1rem;
}

.super-admin-banner a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

.page-heading-row,
.support-card-heading {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.billing-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(280px, 304px));
    justify-content: center;
    width: 100%;
}

.billing-grid > .card {
    display: flex;
    flex-direction: column;
}

.billing-grid > .card button {
    margin-top: auto;
}

.billing-price-card {
    text-align: center;
}

.billing-price {
    color: #1d3557;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
}

.billing-period {
    font-size: 1.1rem;
    font-weight: 700;
    margin: .35rem 0 1rem;
}

.detail-list {
    display: grid;
    gap: .6rem 1rem;
    grid-template-columns: minmax(120px, auto) 1fr;
    margin: 0;
}

.detail-list dt {
    font-weight: 700;
}

.detail-list dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.compact-detail-list {
    font-size: .95rem;
}

.support-account-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.support-account-card {
    border: 2px solid transparent;
}

.current-support-account {
    border-color: #5b38a4;
}

.status-pill {
    background: #5b38a4;
    border-radius: 999px;
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    padding: .35rem .7rem;
}


.alert-success {
    background: #e7f7ed;
    border: 1px solid #7ac493;
    border-radius: 6px;
    color: #175b31;
    margin: 1rem 0;
    padding: .9rem 1rem;
}

@media (max-width: 640px) {
    .detail-list {
        grid-template-columns: 1fr;
    }

    .detail-list dd {
        margin-bottom: .5rem;
    }
}

/* Club signup ------------------------------------------------------------- */
.signup-card {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.signup-pricing-callout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 24px;
}

.signup-pricing-callout > div {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid #c7dff0;
    border-radius: 14px;
    background: #f4faff;
}

.signup-pricing-callout strong {
    color: #0b4f86;
    font-size: 1.12rem;
}

.signup-pricing-callout span {
    color: #526579;
}

.subdomain-builder {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 760px;
}

.subdomain-builder input {
    min-width: 120px;
    border-radius: 0;
    text-align: left;
    font-weight: 700;
    color: #123f68;
}

.subdomain-fixed {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid #c2d2df;
    background: #edf5fb;
    color: #4a6279;
    font-weight: 700;
    white-space: nowrap;
}

.subdomain-fixed:first-child {
    border-right: 0;
    border-radius: 12px 0 0 12px;
}

.subdomain-fixed:last-child {
    border-left: 0;
    border-radius: 0 12px 12px 0;
}

.subdomain-status {
    display: block;
    min-height: 1.25em;
    margin-top: 6px;
    font-size: .92rem;
    font-weight: 700;
}

.subdomain-status.checking {
    color: #607285;
}

.subdomain-status.available {
    color: #1d653a;
}

.subdomain-status.unavailable {
    color: #b02318;
}

.optional-label {
    color: #657180;
    font-size: .85rem;
    font-weight: 600;
}

.logo-upload-shell {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid #d5e5f1;
    border-radius: 14px;
    background: #f9fcff;
}

.logo-preview-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 112px;
    padding: 12px;
    border: 1px dashed #aac8dd;
    border-radius: 12px;
    background: #fff;
    color: #7a8b9b;
    overflow: hidden;
}

.logo-preview-box img {
    display: block;
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.logo-preview-box img[hidden],
.logo-preview-box [hidden] {
    display: none !important;
}

.logo-upload-controls input[type="file"] {
    padding: 8px;
    background: #fff;
}

@media (max-width: 700px) {
    .billing-grid {
        grid-template-columns: minmax(0, 304px);
    }

    .signup-pricing-callout,
    .logo-upload-shell {
        grid-template-columns: 1fr;
    }

    .subdomain-builder {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
    }

    .subdomain-fixed:first-child {
        border-radius: 12px 0 0 12px;
    }

    .subdomain-builder input {
        border-radius: 0 12px 12px 0;
    }

    .subdomain-fixed:last-child {
        grid-column: 1 / -1;
        justify-content: center;
        border: 1px solid #c2d2df;
        border-top: 0;
        border-radius: 0 0 12px 12px;
    }
}



/* Complimentary billing status */
.complimentary-status {
    color: #17633b;
    font-weight: 800;
}

/* Admin destructive actions ------------------------------------------------ */
.destructive-actions,
.block-admin-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 12px 0 18px;
}

.block-admin-actions {
    padding: 12px 14px;
    border: 1px solid #f0c7c3;
    border-radius: 12px;
    background: #fff8f7;
    justify-content: space-between;
}

.block-team-removal {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.inline-action-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.inline-action-form {
    display: inline-flex;
    margin: 0;
}

.danger-button,
.small-danger-button {
    border: 1px solid #b42318;
    background: #b42318;
    color: #fff;
    box-shadow: none;
}

.danger-button:hover,
.small-danger-button:hover {
    border-color: #8f1c13;
    background: #8f1c13;
    color: #fff;
}

.small-danger-button {
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: .88rem;
}

@media (max-width: 700px) {
    .block-admin-actions,
    .block-team-removal,
    .inline-action-list {
        align-items: stretch;
        flex-direction: column;
    }

    .inline-action-form,
    .inline-action-form button {
        width: 100%;
    }
}

/* Admin edit tools --------------------------------------------------------- */
.edit-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.inline-edit-form {
    margin: 0;
    border: 1px solid #d5e5f2;
    box-shadow: none;
}

.form-grid.four-column {
    grid-template-columns: minmax(90px, .6fr) repeat(3, minmax(160px, 1fr));
}

.admin-tool-grid .wide-tool {
    grid-column: 1 / -1;
}

@media (max-width: 900px) {
    .form-grid.four-column {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .form-grid.four-column {
        grid-template-columns: 1fr;
    }
}


/* Tournament stay-to-play indicator */
.tournament-meta-line .stay-to-play-badge {
    display: inline;
    color: #c62828;
    font-size: 1rem;
    font-weight: 900;
    line-height: inherit;
    padding: 0;
    border: 0;
    background: transparent;
}

.tournament-meta-line .stay-to-play-badge::before {
    content: none !important;
    display: none !important;
    margin: 0 !important;
}

/* Admin travel registration report ---------------------------------------- */
.report-header-card,
.report-section {
    background: #fff;
    border: 1px solid #d5e5f2;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(16, 55, 92, .08);
}

.report-header-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 26px;
    margin-bottom: 22px;
}

.report-header-card h1,
.report-section h2,
.block-report-header h3 {
    margin-top: 0;
}

.report-header-card h1 {
    margin-bottom: 6px;
}

.report-jump-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.report-section {
    padding: 22px;
    margin-bottom: 24px;
    scroll-margin-top: 18px;
}

.report-section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.report-section-heading h2 {
    margin-bottom: 4px;
}

.report-count {
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: 999px;
    background: #edf5fb;
    color: #264967;
    font-size: .9rem;
    font-weight: 800;
}

.report-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #dce8f1;
    border-radius: 12px;
}

.admin-report-table {
    width: 100%;
    min-width: 1040px;
    margin: 0;
    border-collapse: collapse;
    background: #fff;
}

.admin-report-table th {
    padding: 11px 12px;
    background: #f2f7fb;
    color: #183a58;
    text-align: left;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .025em;
    text-transform: uppercase;
    border-bottom: 1px solid #dce8f1;
}

.admin-report-table td {
    padding: 12px;
    vertical-align: top;
    border-bottom: 1px solid #e6eef4;
}

.admin-report-table tbody tr:last-child td {
    border-bottom: 0;
}

.admin-report-table tbody tr:hover td {
    background: #fbfdff;
}

.report-user-cell {
    min-width: 190px;
}

.report-user-cell > span {
    display: block;
    margin-top: 3px;
    color: #597086;
    font-size: .9rem;
}

.report-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.report-chip {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 999px;
    background: #edf5fb;
    color: #183f60;
    font-size: .83rem;
    font-weight: 800;
}

.report-primary {
    margin-bottom: 3px;
    font-weight: 800;
    color: #102f4a;
}

.report-subtle,
.report-empty {
    color: #6a7d8d;
    font-size: .9rem;
}

.report-missing {
    color: #a22b21;
    font-weight: 800;
}

.report-confirmation {
    white-space: nowrap;
}

.report-notes {
    min-width: 210px;
    height: 1px;
    white-space: pre-wrap;
}

.report-editor-field {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
}

.report-editor-label {
    flex: 0 0 auto;
    margin: 0 0 8px;
    line-height: 1.25;
    white-space: nowrap;
}

.report-inline-input,
.report-inline-notes {
    width: 100%;
    min-width: 170px;
    padding: 8px 9px;
    border: 1px solid #b9ccda;
    border-radius: 7px;
    background: #fff;
    color: #17324a;
    font: inherit;
}

.report-inline-notes {
    flex: 1 1 auto;
    min-width: 260px;
    min-height: 96px;
    height: 100%;
    resize: vertical;
    white-space: pre-wrap;
}

.report-notes-editor {
    min-height: 100%;
}

.report-inline-input:focus,
.report-inline-notes:focus {
    outline: 3px solid rgba(55, 128, 190, .18);
    border-color: #327dbb;
}

.report-actions {
    width: 1%;
    white-space: nowrap;
}

.report-save-button {
    padding: 8px 13px;
}

.travel-report-message {
    margin: 0 0 18px;
    padding: 12px 14px;
    border: 1px solid;
    border-radius: 9px;
    font-weight: 700;
}

.success-message {
    border-color: #9bc7a5;
    background: #edf8ef;
    color: #205b2c;
}

.error-message {
    border-color: #dfa39e;
    background: #fff0ef;
    color: #86261f;
}

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

.block-report-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.block-report-card {
    overflow: hidden;
    border: 1px solid #d8e6f0;
    border-radius: 14px;
    background: #fff;
}

.block-report-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 20px;
    background: #f8fbfd;
    border-bottom: 1px solid #dce8f1;
}

.block-report-header h3 {
    margin-bottom: 4px;
}

.block-report-teams {
    min-width: 220px;
}

.report-label {
    display: block;
    margin-bottom: 6px;
    color: #526b80;
    font-size: .77rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.report-deadline {
    display: inline-block;
    margin-left: 12px;
    font-weight: 700;
}

.block-table-wrap {
    border: 0;
    border-radius: 0;
}

.block-assignment-table {
    min-width: 900px;
}

.block-report-empty {
    padding: 18px 20px;
    color: #6a7d8d;
}

@media (max-width: 760px) {
    .report-header-card,
    .report-section-heading,
    .block-report-header {
        flex-direction: column;
    }

    .report-jump-links,
    .report-jump-links .button {
        width: 100%;
    }

    .report-jump-links .button {
        text-align: center;
    }

    .block-report-teams {
        min-width: 0;
        width: 100%;
    }

    .report-deadline {
        display: block;
        margin: 4px 0 0;
    }
}

/* Admin hotel blocks overview --------------------------------------------- */
.blocks-overview-header,
.block-edit-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.blocks-overview-header h1,
.block-edit-header h1 {
    margin-bottom: 6px;
}

.blocks-overview-list {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.block-overview-card {
    padding: 22px;
}

.block-overview-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e3edf5;
}

.block-overview-topline h2,
.block-overview-primary h3,
.block-overview-grid h3 {
    margin-top: 0;
}

.block-tournament-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
}

.stay-to-play-text {
    color: #c62828;
    font-weight: 900;
}

.block-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .85fr);
    gap: 30px;
    padding-top: 18px;
}

.block-overview-primary > div {
    margin: 5px 0;
}

.block-date-line {
    margin-top: 12px !important;
}

.block-booking-action {
    margin-top: 16px !important;
}

.block-team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.block-team-tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 10px;
    border: 1px solid #c9dceb;
    border-radius: 999px;
    background: #f4f9fd;
    color: #174f7d;
    font-weight: 700;
    text-decoration: none;
}

.block-team-tag:hover {
    background: #e8f3fb;
}

.block-subheading {
    margin-top: 22px !important;
}

.block-room-list {
    display: grid;
    gap: 8px;
}

.block-room-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 8px 10px;
    border-radius: 8px;
    background: #f7f9fb;
}

.block-note-summary {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #e3edf5;
}

.button-secondary {
    background: #eef4f8;
    color: #174f7d;
    border: 1px solid #c9dceb;
}

.button-secondary:hover {
    background: #dfeef8;
    color: #123f64;
}

.block-edit-card h2 {
    margin-top: 28px;
    margin-bottom: 14px;
}

.block-edit-card h2:first-of-type {
    margin-top: 0;
}

.block-edit-room-grid {
    display: grid;
    gap: 10px;
}

.block-edit-room-row {
    display: grid;
    grid-template-columns: minmax(220px, 2fr) minmax(110px, .7fr) minmax(130px, .8fr);
    gap: 12px;
    padding: 12px;
    border: 1px solid #dde8f0;
    border-radius: 10px;
    background: #f9fbfd;
}

.block-edit-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.block-edit-team-option {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border: 1px solid #d5e5f2;
    border-radius: 9px;
    background: #f9fbfd;
    cursor: pointer;
}

.block-edit-team-option input {
    width: auto;
    margin: 0;
}

.block-edit-actions {
    margin-top: 26px;
    display: flex;
    gap: 10px;
}

.block-recipient-card { margin-top: 20px; }
.block-recipient-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.block-recipient-heading h2 { margin-top: 0; }
.block-recipient-team { margin-top: 14px; border: 1px solid #cfdeea; border-radius: 11px; overflow: hidden; background: #fff; }
.block-recipient-team-heading { display: flex; justify-content: space-between; gap: 16px; padding: 12px 14px; background: #edf5fb; color: #173e60; font-size: 1.08rem; font-weight: 850; cursor: pointer; }
.team-booking-counts { color: #60768a; font-size: .9rem; font-weight: 500; }
.block-selection-tools, .team-selection-tools { display: flex; align-items: center; gap: 7px; }
.block-selection-tools { margin: 10px 0 4px; }
.team-selection-tools { justify-content: flex-end; padding: 7px 12px; border-bottom: 1px solid #e5edf3; background: #f8fbfd; font-size: .9rem; }
.link-button { padding: 0; border: 0; background: transparent; color: #2368a2; font: inherit; font-weight: 750; cursor: pointer; text-decoration: underline; }
.block-recipient-list { display: grid; gap: 0; }
.block-roster-list { display: grid; grid-template-columns: 1fr; gap: 8px; padding: 10px; background: #f5f8fa; }
.roster-spot { border: 1px solid #d6e3ec; border-radius: 9px; overflow: hidden; background: #fff; }
.roster-spot-heading { display: flex; align-items: baseline; gap: 9px; padding: 8px 10px; background: #edf3f7; color: #213e59; }
.roster-booking-status { margin-left: auto; }
.roster-number { min-width: 28px; color: #60788d; font-weight: 800; }
.roster-no-parent { padding: 8px 10px; color: #7a8997; font-size: .9rem; }
.block-recipient-row {
    padding: 7px 10px;
    border-top: 1px solid #e5edf3;
    background: #fbfcfd;
}
.block-recipient-row:first-child { border-top: 0; }
.block-recipient-summary { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(110px, auto); align-items: center; gap: 12px; }
.block-recipient-row input { width: auto; margin: 0; }
.block-recipient-name { font-weight: 750; }
.parent-contact-lines { display: flex; align-items: center; min-width: 0; gap: 14px; }
.parent-name-line { display: flex; align-items: center; gap: 8px; min-width: 190px; padding-left: clamp(8px, 3vw, 36px); }
.parent-contact-line { display: flex; align-items: center; flex-wrap: wrap; min-width: 0; gap: 6px 16px; color: #65778a; font-size: .88rem; }
.parent-contact-line a { color: #526f88; overflow-wrap: anywhere; }
.booking-status { padding: 4px 9px; border-radius: 999px; font-size: .88rem; font-weight: 800; }
.is-booked .booking-status { color: #17603a; background: #dff4e8; }
.is-unbooked .booking-status { color: #8a3e00; background: #fff0d8; }
.block-recipient-contact { color: #65778a; font-size: .92rem; }
.block-recipient-booking-editor {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(260px, 430px) auto;
    align-items: end;
    gap: 12px;
    padding: 10px 0 2px;
}
.block-recipient-booking-editor label { display: block; margin-bottom: 5px; font-weight: 700; }
.block-recipient-booking-editor input,
.block-recipient-booking-editor textarea { width: 100%; min-height: 42px; }
.block-recipient-booking-editor form { margin: 0; }
.booking-editor-toggle { justify-self: end; }
.booking-editor-toggle > summary { color: #2368a2; font-weight: 750; cursor: pointer; white-space: nowrap; }
.booking-editor-toggle[open] { grid-column: 2 / -1; justify-self: stretch; }
.button-compact { min-height: 42px; padding: 8px 16px; }
.message-dialog { width: min(620px, calc(100vw - 32px)); padding: 24px; border: 0; border-radius: 14px; box-shadow: 0 24px 70px rgba(17, 38, 63, .3); }
.message-dialog::backdrop { background: rgba(15, 35, 55, .52); }
.message-dialog-heading { display: flex; justify-content: space-between; gap: 16px; }
.message-dialog-heading h2 { margin-top: 0; }
.dialog-close { border: 0; background: transparent; font-size: 2rem; line-height: 1; cursor: pointer; }
.message-dialog textarea { width: 100%; }
.status-banner { padding: 11px 13px; margin: 14px 0; border-radius: 8px; background: #e2f4e9; color: #175d38; font-weight: 700; }

@media (max-width: 760px) {
    .blocks-overview-header,
    .block-edit-header,
    .block-overview-topline {
        flex-direction: column;
    }

    .block-overview-grid,
    .block-edit-room-row {
        grid-template-columns: 1fr;
    }
    .block-recipient-heading { flex-direction: column; }
    .block-recipient-team-heading { align-items: flex-start; }
    .block-roster-list { grid-template-columns: 1fr; padding: 7px; }
    .block-recipient-summary { grid-template-columns: 1fr auto; }
    .parent-contact-lines { display: grid; gap: 3px; }
    .parent-name-line { min-width: 0; padding-left: 0; }
    .parent-contact-line { padding-left: 26px; }
    .block-recipient-contact { grid-column: 2 / -1; }
    .booking-editor-toggle, .booking-editor-toggle[open] { grid-column: 2 / -1; justify-self: stretch; }
    .block-recipient-booking-editor { grid-template-columns: 1fr; }
}
.player-contact-info > summary {
  cursor: pointer;
}

.player-contact-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.65rem;
}

.player-contact-card {
  border-left: 3px solid var(--border-color, #8fa2c4);
  padding-left: 0.75rem;
}

/* Compact team travel checklist ------------------------------------------ */
.team-header-actions, .quick-book-header, .quick-tournament-header,
.quick-block-main, .quick-book-fields { display: flex; align-items: center; gap: 10px; }
.team-header-actions { flex-wrap: wrap; justify-content: flex-end; }
.quick-book-header { justify-content: space-between; align-items: flex-start; }
.quick-book-header h1 { margin: 2px 0 4px; }
.quick-book-list { display: grid; gap: 12px; margin-top: 12px; }
.quick-tournament { padding: 0; overflow: hidden; }
.quick-tournament-header { padding: 10px 14px; background: #edf5fb; flex-wrap: wrap; }
.quick-tournament-header h2 { margin: 0 auto 0 0; font-size: 1.12rem; }
.quick-block { display: grid; grid-template-columns: minmax(330px, .9fr) minmax(440px, 1.1fr); align-items: center; gap: 9px 16px; padding: 9px 14px; border-top: 1px solid #dfe9f0; }
.quick-block-main { min-width: 0; flex-wrap: wrap; }
.quick-block-main strong { font-size: .98rem; }
.quick-book-action-line { flex: 0 0 100%; display: flex; align-items: center; gap: 10px; }
.quick-status { padding: 3px 7px; border-radius: 999px; font-size: .76rem; font-weight: 850; white-space: nowrap; }
.quick-block.is-complete .quick-status { color: #17603a; background: #dff4e8; }
.quick-block.needs-booking .quick-status { color: #8a3e00; background: #fff0d8; }
.quick-dates, .quick-deadline { color: #61758a; font-size: .88rem; white-space: nowrap; }
.quick-deadline { color: #9a4700; font-weight: 750; }
.quick-book-fields { min-width: 0; }
.quick-book-fields input:first-child { flex: 0 1 190px; }
.quick-book-fields input:nth-child(2) { flex: 1 1 240px; }
.quick-book-fields input { min-width: 0; }
.quick-block-notes { grid-column: 1 / -1; padding: 6px 9px; border-radius: 7px; background: #fff8e8; color: #604c22; font-size: .88rem; line-height: 1.35; }

@media (max-width: 900px) {
    .quick-block { grid-template-columns: 1fr; }
    .quick-book-fields { flex-wrap: wrap; }
    .quick-book-fields input:first-child, .quick-book-fields input:nth-child(2) { flex: 1 1 220px; }
}

@media (max-width: 600px) {
    .quick-book-header { flex-direction: column; }
    .quick-book-fields { display: grid; grid-template-columns: 1fr auto; }
    .quick-book-fields input { grid-column: 1 / -1; }
}
.signup-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
.public-page-hero {
    max-width: 980px;
    margin: 0 auto 2rem;
    padding: clamp(2rem, 5vw, 4.5rem);
    text-align: center;
}

.public-page-hero h1 {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.public-page-hero p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.12rem;
}

.public-content-section h2,
.public-copy-card h2,
.detailed-steps h2 {
    font-size: 1.25rem;
}

.public-prose-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}

.public-copy-card {
    padding: 1.75rem;
}

.marketing-section-action {
    margin-top: 1.5rem;
    text-align: center;
}

.public-price-card ul {
    text-align: left;
    line-height: 1.8;
}

.public-footer {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    border-top: 1px solid rgba(16, 32, 51, .14);
}

.public-footer div,
.public-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
}

@media (max-width: 720px) {
    .public-prose-grid { grid-template-columns: 1fr; }
    .public-footer { flex-direction: column; }
}
.admin-email-form {
    max-width: 960px;
    margin-inline: auto;
}

.html-editor-field {
    display: grid;
    gap: .45rem;
}

.editor-label {
    font-weight: 700;
}

.html-editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    padding: .55rem;
    border: 1px solid #c8d8e8;
    border-bottom: 0;
    border-radius: .65rem .65rem 0 0;
    background: #f4f8fc;
}

.html-editor-toolbar button {
    min-width: 2.4rem;
    padding: .4rem .65rem;
    box-shadow: none;
}

.html-editor {
    min-height: 320px;
    padding: 1rem;
    overflow: auto;
    border: 1px solid #c8d8e8;
    border-radius: 0 0 .65rem .65rem;
    background: #fff;
    color: #14233a;
}

.html-editor:focus {
    border-color: #2586c7;
    outline: 3px solid rgba(37, 134, 199, .16);
}

.html-source {
    display: none;
}
