
/* v65 Add Club uploads + address/location grouping */
.address-location-group {
    grid-column: 1 / -1;
    display: grid;
    gap: 12px;
}

.public-location-picker {
    margin-top: 2px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #f8fafc;
}

.location-search-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.location-search-row input {
    min-width: 0;
}

.public-map-picker-wrap {
    margin-top: 12px;
}

.public-map-picker {
    height: 260px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #eaf2ff;
}

.map-help,
.location-status,
.file-upload-field small {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.location-status.success {
    color: #087f5b;
}

.location-status.error {
    color: #b4232f;
}

.file-upload-field input[type="file"] {
    width: 100%;
    border: 1px dashed #cfd8e6;
    border-radius: 18px;
    padding: 14px;
    background: #fbfcff;
    cursor: pointer;
}

.file-upload-field input[type="file"]::file-selector-button {
    border: 0;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    padding: 9px 12px;
    margin-right: 12px;
    font-weight: 900;
    cursor: pointer;
}

.image-url-fallback {
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fbfcff;
}

.image-url-fallback summary {
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    color: var(--navy);
}

.image-url-grid {
    margin-top: 12px;
}

@media (max-width: 700px) {
    .location-search-row {
        grid-template-columns: 1fr;
    }

    .location-search-row .admin-button {
        width: 100%;
        justify-content: center;
    }

    .public-map-picker {
        height: 230px;
    }

    .file-upload-field input[type="file"]::file-selector-button {
        display: block;
        margin: 0 0 10px 0;
        width: fit-content;
    }
}
