/* Missed Connections — global stylesheet */

/* === Base & layout === */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, #FAF7F4 0%, #F5F1EB 100%);
            color: #2C2C2C;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .page-content {
            flex: 1;
        }

        /* Top Navigation Bar */
        .top-nav {
            background: #FFFEFB;
            border-bottom: 1px solid #E8E5E0;
            padding: 0.75rem 0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            font-size: 1.2rem;
            font-weight: 700;
            color: #C9475B;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-logo:hover {
            color: #D96C7C;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #666;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
            position: relative;
        }

        .nav-links a:hover {
            color: #C9475B;
        }

        .nav-links a.nav-active {
            color: #C9475B;
        }

        .nav-links a.nav-button {
            background: linear-gradient(135deg, #C9475B 0%, #D96C7C 100%);
            color: white;
            padding: 0.5rem 1.25rem;
            border-radius: 20px;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(201, 71, 91, 0.2);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .nav-links a.nav-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(201, 71, 91, 0.3);
            color: white;
        }

        .nav-links a.nav-button-outline {
            background: transparent;
            border: 2px solid #C9475B;
            color: #C9475B;
            padding: 0.5rem 1.25rem;
            border-radius: 20px;
            font-weight: 600;
            transition: background 0.2s, color 0.2s;
        }

        .nav-links a.nav-button-outline:hover {
            background: #C9475B;
            color: white;
        }

        .nav-unread-badge {
            position: absolute;
            top: -7px;
            right: -12px;
            background: #C9475B;
            color: white;
            font-size: 0.65rem;
            font-weight: 700;
            min-width: 1.15rem;
            height: 1.15rem;
            line-height: 1.15rem;
            padding: 0 0.3rem;
            border-radius: 999px;
            text-align: center;
            box-shadow: 0 1px 4px rgba(201, 71, 91, 0.35);
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem 0;
        }

        h1 {
            font-size: 2.5rem;
            color: #C9475B;
            margin-bottom: 0.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1.2;
            max-width: 18em;
            margin-left: auto;
            margin-right: auto;
        }

        .tagline {
            font-size: 1.2rem;
            color: #666;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .tagline-support {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            max-width: 36rem;
            margin: 0 auto 1.75rem;
            font-weight: 400;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #C9475B 0%, #D96C7C 100%);
            color: white;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(201, 71, 91, 0.3);
            transition: transform 0.2s, box-shadow 0.2s;
            margin: 2rem 0;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 71, 91, 0.4);
        }

        .posts-grid {
            display: grid;
            gap: 2rem;
        }

        .post-card {
            background: #FFFEFB;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s, box-shadow 0.2s;
            border-left: 4px solid #C9475B;
        }

        .post-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        }

        .post-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .post-title {
            font-size: 1.5rem;
            color: #C9475B;
            font-weight: 600;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .post-date {
            color: #999;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .post-location {
            color: #7A9B7E;
            font-weight: 500;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .post-content {
            color: #444;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .post-footer {
            display: flex;
            gap: 0.8rem;
            padding-top: 1rem;
            border-top: 1px solid #F0F0F0;
            flex-wrap: wrap;
        }

        .tag {
            background: #F5F1EB;
            color: #666;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .posts-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .posts-pagination a,
        .posts-pagination span {
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
        }

        .posts-pagination a {
            background: #FFFEFB;
            color: #C9475B;
            border: 2px solid #E8E5E0;
        }

        .posts-pagination a:hover {
            background: #C9475B;
            color: white;
            border-color: #C9475B;
        }

        .posts-pagination span.pagination-disabled {
            color: #999;
            border: 2px solid #E8E5E0;
            background: #F5F1EB;
            cursor: not-allowed;
        }

        .posts-pagination .pagination-info {
            color: #666;
            font-size: 0.95rem;
        }

        @media (max-width: 600px) {
            .posts-pagination {
                gap: 0.5rem;
                flex-wrap: nowrap;
            }

            .posts-pagination a,
            .posts-pagination span.pagination-disabled {
                padding: 0.5rem 0.85rem;
                font-size: 0.9rem;
            }

            .posts-pagination .pagination-info {
                padding-left: 0.25rem;
                padding-right: 0.25rem;
                font-size: 0.85rem;
                text-align: center;
            }
        }

        .header-divider {
            border: none;
            border-top: 1px solid #E8E5E0;
            max-width: 480px;
            margin: 2.5rem auto 1.5rem;
        }

        .location-heading {
            font-size: 1.05rem;
            font-weight: 600;
            color: #2C2C2C;
            margin-bottom: 1rem;
            text-align: center;
        }

        .location-section {
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .location-dropdowns {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .listing-apply-btn {
            font-family: inherit;
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
            background: #C9475B;
            border: 2px solid #C9475B;
            border-radius: 8px;
            padding: 0.55rem 1.2rem;
            cursor: pointer;
        }

        .listing-apply-btn:hover {
            background: #b03d50;
            border-color: #b03d50;
        }

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

        .post-type-filters {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            flex-wrap: wrap;
            margin: 1.25rem auto 0;
            max-width: 52rem;
            text-align: center;
        }

        .post-type-chip,
        .post-type-chip:link,
        .post-type-chip:visited {
            font-family: inherit;
            font-size: 0.9rem;
            font-weight: 600;
            line-height: 1.25;
            color: #666;
            background: #FFFEFB;
            border: 1px solid #E8E5E0;
            border-radius: 999px;
            padding: 0.45rem 1rem;
            text-decoration: none;
            display: inline-block;
            white-space: nowrap;
            cursor: pointer;
            box-shadow: none;
        }

        .post-type-chip.is-active,
        .post-type-chip.is-active:link,
        .post-type-chip.is-active:visited,
        .post-type-chip:hover,
        .post-type-chip:focus-visible {
            color: #C9475B;
            border-color: #C9475B;
            text-decoration: none;
        }

        .post-card-meta {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
            margin-bottom: 0.75rem;
        }

        .post-card-meta .post-location {
            margin-bottom: 0;
        }

        .post-type-badge {
            display: inline-block;
            background: #F5F1EB;
            color: #666;
            padding: 0.25rem 0.7rem;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .location-select-wrapper {
            position: relative;
            display: inline-block;
        }

        .location-select-wrapper label {
            display: block;
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 0.4rem;
            font-weight: 500;
        }

        .location-select {
            appearance: none;
            background: white;
            border: 2px solid #E8E5E0;
            border-radius: 8px;
            padding: 0.75rem 2.5rem 0.75rem 1rem;
            font-size: 1rem;
            color: #2C2C2C;
            cursor: pointer;
            transition: border-color 0.2s, box-shadow 0.2s;
            min-width: 200px;
            font-family: inherit;
        }

        .location-select:focus {
            outline: none;
            border-color: #C9475B;
            box-shadow: 0 0 0 3px rgba(201, 71, 91, 0.1);
        }

        .location-select:hover {
            border-color: #C9475B;
        }

        .location-select-wrapper::after {
            content: '▼';
            position: absolute;
            right: 1rem;
            bottom: 0.75rem;
            pointer-events: none;
            color: #999;
            font-size: 0.7rem;
        }

        .location-select-wrapper.city-autocomplete-wrap::after {
            display: none;
        }

        .city-autocomplete {
            position: relative;
            display: block;
            min-width: 200px;
        }

        .city-autocomplete-input {
            width: 100%;
            box-sizing: border-box;
        }

        .city-autocomplete-input:disabled {
            background: #f5f5f5;
            cursor: not-allowed;
        }

        .city-autocomplete-list {
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            right: 0;
            z-index: 100;
            max-height: 240px;
            overflow-y: auto;
            margin: 0;
            padding: 0.35rem 0;
            list-style: none;
            background: #fff;
            border: 2px solid #E8E5E0;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .city-autocomplete-item {
            padding: 0.65rem 1rem;
            cursor: pointer;
            color: #2C2C2C;
            font-size: 0.95rem;
        }

        .city-autocomplete-item:hover,
        .city-autocomplete-item.is-active {
            background: #FAF7F4;
            color: #C9475B;
        }

        .city-autocomplete-empty {
            padding: 0.75rem 1rem;
            color: #999;
            font-size: 0.9rem;
            text-align: center;
        }

        /* Footer Styles */
        footer {
            background: #FFFEFB;
            border-top: 1px solid #E8E5E0;
            margin-top: 4rem;
            padding: 2rem 0;
        }

        .footer-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #7A9B7E;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: #C9475B;
        }

        .footer-copyright {
            text-align: center;
            color: #999;
            font-size: 0.9rem;
            padding-top: 1rem;
            border-top: 1px solid #F0F0F0;
        }

        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-links {
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .nav-links a {
                font-size: 0.9rem;
            }

            h1 {
                font-size: 1.85rem;
                letter-spacing: -0.3px;
            }

            .tagline {
                font-size: 1rem;
            }

            .post-card {
                padding: 1.5rem;
            }

            .post-title {
                font-size: 1.3rem;
            }

            .post-header {
                flex-direction: column;
            }

            .post-date {
                margin-top: 0.5rem;
            }

            .location-dropdowns {
                flex-direction: column;
                align-items: stretch;
            }

            .location-select {
                min-width: 100%;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }

/* === Shared layout & forms === */
.layout-narrow { max-width: 400px; margin: 3rem auto; }
.layout-medium { max-width: 600px; margin: 2rem auto; }
.layout-form { max-width: 700px; margin: 2rem auto; }
.layout-wide { max-width: 900px; margin: 2rem auto; }
.layout-thread { max-width: 800px; margin: 0 auto 2rem; }

.page-heading { font-size: 2.5rem; color: #C9475B; margin-bottom: 2rem; text-align: center; }
.page-heading-tight { margin-bottom: 0.5rem; }
.page-heading-left { font-size: 2.5rem; color: #C9475B; margin-bottom: 0; text-align: left; }
.page-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.cta-button-no-margin { margin: 0; }
.page-heading-sm { font-size: 2rem; color: #C9475B; margin-bottom: 0.5rem; text-align: center; }
.page-subtitle { text-align: center; color: #666; margin-bottom: 2rem; }
.section-heading { color: #C9475B; font-size: 1.5rem; margin-bottom: 1rem; }
.section-heading-sm { color: #C9475B; font-size: 1.15rem; margin-bottom: 0.75rem; text-align: center; }
.section-block { margin-bottom: 2rem; }

.card { background: #FFFEFB; border-radius: 12px; padding: 3rem; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); }
.card-form { background: #FFFEFB; border-radius: 12px; padding: 2.5rem; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); }
.card-list { background: #FFFEFB; border-radius: 12px; padding: 2rem; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); }
.card-empty { background: #FFFEFB; border-radius: 12px; padding: 3rem; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); text-align: center; color: #666; }
.card-empty-title { font-size: 1.2rem; margin-bottom: 1rem; }

.alert { padding: 1rem; border-radius: 8px; margin-bottom: 1.5rem; }
.alert-center { text-align: center; }
.alert-success { background: #e6f7e6; color: #5a8f5e; border-left: 4px solid #7A9B7E; }
.alert-success-muted { background: #e6f7e6; color: #7A9B7E; border-left: 4px solid #7A9B7E; }
.alert-error { background: #ffe6e6; color: #c9475b; border-left: 4px solid #c9475b; }
.alert-info { background: #F5F1EB; padding: 1rem; border-radius: 8px; margin-bottom: 1.5rem; font-size: 0.9rem; color: #444; }
.alert-info a { color: #C9475B; word-break: break-all; }

.form-group { margin-bottom: 1.5rem; }
.form-group-lg { margin-bottom: 2rem; }
.form-label { display: block; margin-bottom: 0.5rem; color: #666; font-weight: 500; }
.form-label .required { color: #C9475B; }
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E8E5E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #C9475B;
}
.form-textarea { resize: vertical; }
.form-hint { color: #999; }
.form-hint-block { color: #999; display: block; margin-top: 0.25rem; }
.form-inline { display: inline; }

.city-autocomplete {
    position: relative;
    display: block;
}

.city-autocomplete-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 100;
    max-height: 240px;
    overflow-y: auto;
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    background: #fff;
    border: 2px solid #E8E5E0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.city-autocomplete-item {
    padding: 0.65rem 1rem;
    cursor: pointer;
    color: #2C2C2C;
    font-size: 0.95rem;
}

.city-autocomplete-item:hover,
.city-autocomplete-item.is-active {
    background: #FAF7F4;
    color: #C9475B;
}

.city-autocomplete-empty {
    padding: 0.75rem 1rem;
    color: #999;
    font-size: 0.9rem;
    text-align: center;
}

.city-autocomplete-input:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

.card-empty-plain { text-align: center; padding: 3rem 0; color: #666; box-shadow: none; background: transparent; }

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

.connect-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.btn-found {
    background: #5a8f5e;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.btn-remove-post {
    background: #666;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.connect-login-hint {
    margin-top: 0.75rem;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

.status-badge-inline {
    background: #F5F1EB;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
}

.status-badge-found {
    background: #eef4ff;
    color: #4a6fb5;
}

.post-found-note {
    background: #eef4ff;
    color: #4a6fb5;
    border-left: 4px solid #4a6fb5;
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.post-found-note-detail {
    margin: 1rem 0 0;
}

.post-card-found {
    opacity: 0.96;
}

.connect-form-panel.is-hidden {
    display: none;
}

.post-title a {
    color: inherit;
    text-decoration: none;
}

.post-encounter-time {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.posts-empty {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.text-center-block { text-align: center; }
.form-hint-sm { color: #999; font-size: 0.85rem; }
.form-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.form-actions-center { justify-content: center; }
.form-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: #444;
    line-height: 1.5;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #F0F0F0;
}
.form-checkbox { margin-top: 0.25rem; width: 1rem; height: 1rem; accent-color: #C9475B; }
.form-divider-top { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid #F0F0F0; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }

.post-type-fieldset {
    border: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
}

.post-type-fieldset .form-label {
    margin-bottom: 0.75rem;
}

.post-type-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.post-type-option {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid #E8E5E0;
    border-radius: 999px;
    background: #FFFEFB;
    cursor: pointer;
    font-weight: 600;
    color: #444;
}

.post-type-option:has(input:checked) {
    color: #C9475B;
    border-color: #C9475B;
}

.post-type-option input {
    margin: 0;
    accent-color: #C9475B;
}

.post-type-hint {
    margin: 0.75rem 0 0;
    line-height: 1.45;
}

.btn-primary {
    background: linear-gradient(135deg, #C9475B 0%, #D96C7C 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 15px rgba(201, 71, 91, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201, 71, 91, 0.4); }
.btn-primary-wide { width: 100%; padding: 1rem; }
.btn-primary-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-secondary { color: #666; padding: 1rem 2rem; font-weight: 500; text-decoration: none; }
.btn-green { background: #7A9B7E; color: white; padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 600; text-decoration: none; display: inline-block; }

.readonly-field { padding: 0.75rem; background: #F5F1EB; border-radius: 8px; color: #444; }

.auth-footer { margin-top: 2rem; text-align: center; padding-top: 2rem; border-top: 1px solid #F0F0F0; }
.auth-footer p { color: #666; }
.auth-link { color: #C9475B; text-decoration: none; font-weight: 500; }
.auth-link-sm { color: #C9475B; text-decoration: none; font-size: 0.9rem; font-weight: 500; }
.auth-link-center { text-align: center; margin-bottom: 1.5rem; }

.text-link-muted { color: #7A9B7E; text-decoration: none; font-weight: 500; }
.text-link-muted:hover { color: #5f7f63; }

/* === connect === */
.back-link {
            display: inline-block;
            color: #C9475B;
            text-decoration: none;
            margin-bottom: 2rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .back-link:hover {
            color: #D96C7C;
        }

        .connect-alert {
            max-width: 900px;
            margin: 0 auto 1.5rem;
            padding: 1rem 1.25rem;
            border-radius: 8px;
            text-align: center;
        }

        .connect-alert-success {
            background: #e6f7e6;
            color: #5a8f5e;
            border-left: 4px solid #7A9B7E;
        }

        .connect-alert-error {
            background: #ffe6e6;
            color: #c9475b;
            border-left: 4px solid #c9475b;
        }

        .post-detail {
            background: #FFFEFB;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            border-left: 4px solid #C9475B;
        }

        .post-detail-header {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #F0F0F0;
        }

        .post-detail-title {
            font-size: 2.5rem;
            color: #C9475B;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .post-detail-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            color: #666;
            font-size: 0.95rem;
        }

        .post-detail-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .post-detail-content {
            color: #444;
            line-height: 1.8;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            white-space: pre-wrap;
        }

        .post-detail-footer {
            padding-top: 2rem;
            border-top: 1px solid #F0F0F0;
        }

        .tag {
            background: #F5F1EB;
            color: #666;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-block;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .loading {
            text-align: center;
            padding: 3rem;
            color: #666;
            font-size: 1.2rem;
        }

        .error {
            text-align: center;
            padding: 3rem;
            color: #C9475B;
            font-size: 1.2rem;
        }

        .location-badge {
            color: #7A9B7E;
            font-weight: 500;
        }

        .connect-actions {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #F0F0F0;
        }

        .connect-btn {
            display: inline-block;
            background: linear-gradient(135deg, #C9475B 0%, #D96C7C 100%);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(201, 71, 91, 0.3);
            cursor: pointer;
            font-family: inherit;
        }

        .connect-btn:hover {
            transform: translateY(-1px);
        }

        .connect-form-panel {
            margin-top: 1.5rem;
            padding: 1.5rem;
            background: #FAF7F4;
            border-radius: 8px;
            border: 1px solid #E8E5E0;
        }

        .connect-form-panel label {
            display: block;
            margin-bottom: 0.5rem;
            color: #666;
            font-weight: 500;
        }

        .connect-form-panel input[type="text"],
        .connect-form-panel textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #E8E5E0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            margin-bottom: 1rem;
        }

        .connect-form-panel textarea {
            resize: vertical;
            min-height: 120px;
        }

        .connect-form-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .connect-cancel {
            color: #666;
            text-decoration: none;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .post-detail {
                padding: 2rem 1.5rem;
            }

            .post-detail-title {
                font-size: 2rem;
            }

            .post-detail-meta {
                flex-direction: column;
                gap: 1rem;
            }
        }
/* === profile === */
.profile-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .profile-btn-save {
            background: linear-gradient(135deg, #C9475B 0%, #D96C7C 100%);
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
        }

        .profile-btn-delete {
            background: transparent;
            color: #666;
            padding: 0.75rem 1.5rem;
            border: 2px solid #E8E5E0;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
        }

        .profile-btn-delete:hover {
            border-color: #c9475b;
            color: #c9475b;
        }

        .profile-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1000;
        }

        .profile-modal.is-open {
            display: block;
        }

        .profile-modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(44, 44, 44, 0.45);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .profile-modal-content {
            background: #FFFEFB;
            border-radius: 12px;
            padding: 2rem;
            max-width: 420px;
            width: 100%;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            text-align: center;
        }

        .profile-modal-content h3 {
            color: #C9475B;
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .profile-modal-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .profile-modal-actions {
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .profile-btn-confirm-delete {
            background: #c9475b;
            color: white;
            padding: 0.75rem 1.25rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
        }

        .profile-btn-cancel {
            background: #F5F1EB;
            color: #666;
            padding: 0.75rem 1.25rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
        }

        .profile-field {
            margin-bottom: 1.5rem;
        }

        .profile-field label {
            display: block;
            color: #666;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .profile-field input[type="password"] {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #E8E5E0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
        }

        .profile-field-hint {
            color: #888;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1rem;
            text-align: center;
        }
/* === privacy === */
.page-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem 0;
        }

        .page-title {
            font-size: 2.5rem;
            color: #C9475B;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .content-section {
            background: #FFFEFB;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }

        .content-section h2 {
            color: #C9475B;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            margin-top: 2rem;
        }

        .content-section h2:first-child {
            margin-top: 0;
        }

        .content-section h3 {
            color: #7A9B7E;
            font-size: 1.3rem;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
        }

        .content-section p {
            color: #444;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .content-section ul, .content-section ol {
            margin-left: 2rem;
            margin-bottom: 1rem;
            color: #444;
            line-height: 1.8;
        }

        .content-section li {
            margin-bottom: 0.5rem;
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }

            .content-section {
                padding: 2rem 1.5rem;
            }
        }

/* === contact === */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.1fr);
    gap: 1.5rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.contact-info-card,
.contact-form-card {
    background: #FFFEFB;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.contact-info-heading {
    color: #C9475B;
    font-size: 1.4rem;
    margin: 0 0 0.75rem;
    text-align: center;
}

.contact-info-blurb {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
}

.contact-info-list {
    margin: 0 0 1.25rem;
}

.contact-info-row {
    display: grid;
    gap: 0.25rem;
    padding: 0.85rem 0;
    border-top: 1px solid #F0F0F0;
}

.contact-info-row:last-child {
    border-bottom: 1px solid #F0F0F0;
}

.contact-info-row dt {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #7A9B7E;
    font-weight: 600;
}

.contact-info-row dd {
    margin: 0;
    color: #444;
    line-height: 1.6;
}

.contact-info-row a {
    color: #C9475B;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-row a:hover {
    text-decoration: underline;
}

.contact-info-note {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

.contact-message {
    min-height: 9rem;
    resize: vertical;
}

.contact-success-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
}
/* === messages === */
.inbox-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
        }

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

        .conversation-card {
            display: flex;
            flex-direction: column;
            background: #FFFEFB;
            border: 1px solid #E8E5E0;
            border-radius: 12px;
            padding: 1.25rem 1.5rem;
            color: inherit;
            transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
            border-left: 4px solid #E8E5E0;
        }

        .conversation-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            border-left-color: #C9475B;
        }

        .conversation-card.unread {
            border-left-color: #C9475B;
            background: #FFFCFB;
        }

        .conversation-card-body {
            display: block;
            text-decoration: none;
            color: inherit;
            flex: 1;
        }

        .conversation-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 0.5rem;
        }

        .conversation-card-title {
            font-size: 1.15rem;
            font-weight: 600;
            color: #C9475B;
            line-height: 1.3;
        }

        .conversation-card-time {
            color: #999;
            font-size: 0.85rem;
            white-space: nowrap;
        }

        .conversation-card-meta {
            color: #7A9B7E;
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
        }

        .conversation-card-preview {
            color: #444;
            line-height: 1.6;
            margin-bottom: 0.75rem;
        }

        .conversation-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
            padding-top: 0.25rem;
            border-top: 1px solid #F0EDE8;
        }

        .conversation-card-count {
            color: #666;
            font-size: 0.85rem;
        }

        .conversation-card-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-left: auto;
        }

        .conversation-delete-btn {
            border: none;
            background: transparent;
            color: #999;
            font-size: 0.85rem;
            font-family: inherit;
            cursor: pointer;
            padding: 0;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .conversation-delete-btn:hover {
            color: #C9475B;
        }

        .conversation-unread-badge {
            background: #C9475B;
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2rem 0.55rem;
            border-radius: 999px;
            text-decoration: none;
        }

        .conversation-view-link {
            color: #C9475B;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .conversation-view-link:hover {
            color: #D96C7C;
        }

        .inbox-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1000;
        }

        .inbox-modal.is-open {
            display: block;
        }

        .inbox-modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .inbox-modal-content {
            background: #FFFEFB;
            border-radius: 12px;
            padding: 2rem;
            max-width: 420px;
            width: 100%;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            text-align: center;
        }

        .inbox-modal-content h3 {
            color: #C9475B;
            margin-bottom: 0.75rem;
            font-size: 1.35rem;
        }

        .inbox-modal-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .inbox-modal-actions {
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .inbox-btn-confirm-delete {
            background: #C9475B;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 0.75rem 1.25rem;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
        }

        .inbox-btn-cancel {
            background: transparent;
            color: #666;
            border: 2px solid #E8E5E0;
            border-radius: 8px;
            padding: 0.75rem 1.25rem;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            font-family: inherit;
        }
/* === conversation === */
.conversation-back {
            display: inline-block;
            color: #C9475B;
            text-decoration: none;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .conversation-back:hover {
            color: #D96C7C;
        }

        .conversation-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .conversation-header h1 {
            font-size: 2rem;
            color: #C9475B;
            margin-bottom: 0.5rem;
        }

        .conversation-header p {
            color: #666;
        }

        .conversation-header-links {
            margin-top: 0.75rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .conversation-header-link {
            color: #7A9B7E;
            text-decoration: none;
            font-weight: 500;
        }

        .conversation-header-link:hover {
            color: #5f7f63;
        }

        .conversation-header-separator {
            color: #ccc;
        }

        .conversation-block-btn {
            border: none;
            background: transparent;
            color: #999;
            font-size: 1rem;
            font-family: inherit;
            font-weight: 500;
            cursor: pointer;
            padding: 0;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .conversation-block-btn:hover {
            color: #C9475B;
        }

        .conversation-blocked-note {
            color: #888;
            font-size: 0.95rem;
            font-style: italic;
        }

        .thread-wrap {
            background: #FFFEFB;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            margin-bottom: 1.5rem;
        }

        .thread-message {
            margin-bottom: 1rem;
            display: flex;
        }

        .thread-message:last-child {
            margin-bottom: 0;
        }

        .thread-message.mine {
            justify-content: flex-end;
        }

        .thread-bubble {
            max-width: 78%;
            padding: 0.9rem 1rem;
            border-radius: 12px;
            line-height: 1.6;
        }

        .thread-message.theirs .thread-bubble {
            background: #F5F1EB;
            color: #444;
            border-top-left-radius: 4px;
        }

        .thread-message.mine .thread-bubble {
            background: linear-gradient(135deg, #C9475B 0%, #D96C7C 100%);
            color: white;
            border-top-right-radius: 4px;
        }

        .thread-meta {
            font-size: 0.8rem;
            margin-bottom: 0.35rem;
            opacity: 0.85;
        }

        .thread-text {
            white-space: pre-wrap;
            word-break: break-word;
        }

        .reply-panel {
            background: #FFFEFB;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .reply-panel label {
            display: block;
            margin-bottom: 0.5rem;
            color: #666;
            font-weight: 500;
        }

        .reply-panel textarea {
            width: 100%;
            min-height: 120px;
            padding: 0.75rem;
            border: 2px solid #E8E5E0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            margin-bottom: 1rem;
        }

        .reply-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .reply-submit {
            background: linear-gradient(135deg, #C9475B 0%, #D96C7C 100%);
            color: white;
            padding: 0.9rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
        }

        .reply-cancel {
            color: #666;
            text-decoration: none;
            padding: 0.9rem 1.5rem;
            font-weight: 500;
        }

        .reply-blocked-panel {
            background: #FFFEFB;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            text-align: center;
            color: #666;
            line-height: 1.6;
        }

        .conversation-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1000;
        }

        .conversation-modal.is-open {
            display: block;
        }

        .conversation-modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .conversation-modal-content {
            background: #FFFEFB;
            border-radius: 12px;
            padding: 2rem;
            max-width: 420px;
            width: 100%;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            text-align: center;
        }

        .conversation-modal-content h3 {
            color: #C9475B;
            margin-bottom: 0.75rem;
            font-size: 1.35rem;
        }

        .conversation-modal-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .conversation-modal-actions {
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .conversation-btn-confirm-block {
            background: #C9475B;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 0.75rem 1.25rem;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
        }

        .conversation-btn-cancel {
            background: transparent;
            color: #666;
            border: 2px solid #E8E5E0;
            border-radius: 8px;
            padding: 0.75rem 1.25rem;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            font-family: inherit;
        }
/* === my-posts === */
.my-post-item {
                    display: flex;
                    justify-content: space-between;
                    align-items: flex-start;
                    gap: 1.5rem;
                    padding: 1.5rem 0;
                    border-bottom: 1px solid #F0F0F0;
                    flex-wrap: wrap;
                }
                .my-post-item:last-child { border-bottom: none; }
                .my-post-main { flex: 1; min-width: 250px; }
                .my-post-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.4rem; flex-wrap: wrap; }
                .my-post-title { font-size: 1.25rem; font-weight: 600; color: #C9475B; text-decoration: none; }
                .my-post-title:hover { color: #D96C7C; }
                .my-post-location { color: #7A9B7E; font-weight: 500; font-size: 0.9rem; margin-bottom: 0.5rem; }
                .my-post-excerpt { color: #444; line-height: 1.6; margin-bottom: 0.5rem; }
                .my-post-date { color: #999; font-size: 0.85rem; }
                .status-badge { font-size: 0.8rem; font-weight: 600; padding: 0.25rem 0.7rem; border-radius: 20px; white-space: nowrap; }
                .status-active { background: #e6f7e6; color: #5a8f5e; }
                .status-found { background: #eef4ff; color: #4a6fb5; }
                .status-removed { background: #f0f0f0; color: #888; }
                .my-post-actions { display: flex; flex-direction: column; gap: 0.5rem; align-items: stretch; min-width: 130px; }
                .my-post-btn {
                    display: inline-block;
                    text-align: center;
                    padding: 0.5rem 1rem;
                    border-radius: 8px;
                    font-weight: 600;
                    font-size: 0.9rem;
                    text-decoration: none;
                    border: none;
                    cursor: pointer;
                    width: 100%;
                    font-family: inherit;
                }
                .btn-view { background: #FFFEFB; color: #C9475B; border: 2px solid #E8E5E0; }
                .btn-view:hover { border-color: #C9475B; }
                .btn-edit { background: #7A9B7E; color: white; }
                .btn-found { background: #5a8f5e; color: white; }
                .btn-remove { background: #666; color: white; }
                @media (max-width: 600px) {
                    .my-post-actions { flex-direction: row; flex-wrap: wrap; width: 100%; }
                    .my-post-btn { width: auto; flex: 1; }
                }

/* === admin === */
.admin-layout { max-width: 980px; }
.admin-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.admin-stat-card {
    background: #FFFEFB;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    text-align: center;
}
.admin-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #C9475B;
    line-height: 1.1;
}
.admin-stat-label {
    color: #444;
    font-weight: 600;
    margin-top: 0.35rem;
}
.admin-stat-sub {
    color: #999;
    font-size: 0.85rem;
    margin-top: 0.2rem;
}
.admin-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.admin-tab {
    text-decoration: none;
    color: #666;
    font-weight: 600;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid #E8E5E0;
    background: #FFFEFB;
}
.admin-tab.is-active,
.admin-tab:hover {
    color: #C9475B;
    border-color: #C9475B;
}
.admin-search {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.admin-search .form-input {
    flex: 1;
    min-width: 200px;
}
.admin-table-wrap {
    background: #FFFEFB;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    overflow-x: auto;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}
.admin-table th,
.admin-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #F0F0F0;
    text-align: left;
    vertical-align: top;
    color: #444;
}
.admin-table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #7A9B7E;
    background: #FAF8F4;
}
.admin-table a {
    color: #C9475B;
    font-weight: 600;
    text-decoration: none;
}
.admin-table a:hover { text-decoration: underline; }
.admin-muted {
    color: #999;
    font-size: 0.85rem;
    margin-top: 0.2rem;
}
.admin-author { max-width: 220px; word-break: break-word; }
.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    min-width: 160px;
}
.admin-action-btn {
    border: 1px solid #E8E5E0;
    background: #FFFEFB;
    color: #666;
    border-radius: 8px;
    padding: 0.35rem 0.65rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}
.admin-action-btn:hover {
    border-color: #C9475B;
    color: #C9475B;
}
.admin-action-danger:hover {
    border-color: #a33;
    color: #a33;
}
.admin-role-pill {
    display: inline-block;
    margin-left: 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #7A9B7E;
    border: 1px solid #7A9B7E;
    border-radius: 999px;
    padding: 0.1rem 0.45rem;
    vertical-align: middle;
}
.admin-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
    color: #666;
}
.admin-pagination a {
    color: #C9475B;
    font-weight: 600;
    text-decoration: none;
}
@media (max-width: 768px) {
    .admin-stats { grid-template-columns: 1fr; }
}
