﻿/* =============================================================
   WELCOME.CSS — WanderingWU welcome + invite pages

   PRESERVED LEGACY CLASSES (Invite.cshtml depends on these):
     .welcome-page, .hero, .hero-container, .features,
     .features-container, .features-grid, .feature-card,
     .feature-icon, .cta-button, .welcome-footer, .welcome-header-*,
     .guest-notice, .guest-message, .guest-message-card,
     .guest-roles-info, .feature-badge, .card-nav-btn

   NEW (wp-* namespace — welcome Index.cshtml only):
     .wp, .wp-public, .wp-signed-in, .wp-centered, etc.
   ============================================================= */


/* ── Root containers ────────────────────────────────────────── */
.welcome-page,
.wp {
    min-height: calc(100vh - 42px);
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    box-sizing: border-box;
}


/* =============================================================
   LEGACY — preserved for Invite.cshtml
   ============================================================= */

.main-image {
    width: 100%;
    margin: 0 auto;
}

.wanderingwu-img {
    height: 400px;
}

.hero {
    padding: 120px var(--space-xl, 2rem) 80px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg, 1.5rem);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary, #111827);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 24px;
    color: var(--text-secondary, #6b7280);
    margin-bottom: 16px;
    font-weight: 400;
}

.hero .description {
    font-size: 1.4rem;
    font-family: Tahoma;
    color: var(--text-secondary, #6b7280);
    margin-bottom: 30px;
    margin-top: 15px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm, 0.5rem);
    background: var(--accent-primary, #1e40af);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
}

    .cta-button:hover {
        background: var(--accent-primary-dark, #1e3a8a);
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(30, 64, 175, 0.3);
        color: #fff;
        text-decoration: none;
    }

.cta-button-secondary {
    background: white;
    color: var(--accent-primary, #1e40af);
    border: 2px solid var(--accent-primary, #1e40af);
}

    .cta-button-secondary:hover {
        background: var(--accent-primary, #1e40af);
        color: white;
    }

.features {
    float: none;
    padding: 20px 0;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    display: flex;
    justify-content: center;
}

.features-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary, #111827);
    margin-bottom: 60px;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.feature-card {
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-primary, #1e40af), var(--accent-primary-dark, #1e3a8a));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
    transition: all 0.2s ease;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary, #111827);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary, #6b7280);
    line-height: 1.6;
    margin: 0;
}

.feature-card.disabled {
    opacity: 0.6;
    position: relative;
    cursor: not-allowed;
}

.feature-badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: #f59e0b;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.card-nav-btn {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: var(--space-xl, 2rem);
    background-color: transparent;
    transition: all 0.2s ease;
}

.guest-notice {
    font-size: 4rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.guest-message {
    max-width: 700px;
    margin: 2rem auto;
}

.guest-message-card {
    background: #fffbeb;
    border: 2px solid #fbbf24;
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
}

    .guest-message-card h3 {
        color: #b45309;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .guest-message-card p {
        color: #78350f;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

.guest-roles-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #fbbf24;
}

    .guest-roles-info ul {
        list-style: none;
        padding: 0;
        margin-top: 0.75rem;
    }

    .guest-roles-info li {
        padding: 0.5rem 0;
        color: #78350f;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .guest-roles-info li i {
            color: #f59e0b;
            width: 20px;
        }


/* =============================================================
   WELCOME HEADER PARTIAL
   ============================================================= */

.welcome-page-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
}

.welcome-header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
}

.welcome-logo a {
    display: none;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #111827;
    transition: opacity 0.2s;
}

    .welcome-logo a:hover {
        opacity: 0.8;
    }

.welcome-logo-img {
    width: 32px;
    height: 32px;
}

.welcome-logo-text {
    font-size: 1.125rem;
    font-weight: 600;
}

.welcome-user-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm, 0.5rem);
    padding: var(--space-xs, 0.25rem) var(--space-md, 1rem);
    cursor: pointer;
    transition: all 0.2s ease;
}

.welcome-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    overflow: hidden;
}

    .welcome-user-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .welcome-user-avatar span {
        user-select: none;
    }

.welcome-user-info {
    display: none;
    flex-direction: column;
    align-items: flex-start;
}

.welcome-user-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.2;
}

.welcome-user-role {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.2;
}

.welcome-user-btn i {
    color: #9ca3af;
    font-size: 0.75rem;
    transition: transform 0.2s;
    display: none;
}

.welcome-user-btn:hover i {
    transform: rotate(180deg);
}


/* =============================================================
   WELCOME FOOTER
   ============================================================= */

.welcome-footer {
    width: 100%;
    background: var(--card-bg, #f9fafb);
    padding: 0.75rem 1.5rem;
    font-size: 0.8125rem;
    color: var(--text-secondary, #6b7280);
    border-top: thin solid #eee;
}

.welcome-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.welcome-footer-left {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
}

.welcome-footer-dot {
    opacity: 0.6;
}

.welcome-footer-right {
    font-size: 0.8125rem;
    opacity: 0.85;
}

.welcome-footer-tagline {
    white-space: nowrap;
}

@media (max-width: 640px) {
    .welcome-footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .welcome-footer-left, .welcome-footer-tagline {
        white-space: normal;
    }
}


/* =============================================================
   NEW: wp-* NAMESPACE
   Only used by Pages/Index.cshtml (welcome page).
   ============================================================= */

/* ── Shared typography ──────────────────────────────────────── */
.wp-eyebrow {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-tertiary, #9ca3af);
    margin: 0 0 0.6rem;
}

.wp-headline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary, #111827);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.wp-headline--sm {
    font-size: 1.625rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.wp-lead {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text-secondary, #6b7280);
    margin: 0 0 2rem;
    max-width: 540px;
    font-family: inherit;
}

.wp-lead--sm {
    font-size: 0.9375rem;
    max-width: 460px;
}

.wp-section-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-tertiary, #9ca3af);
    margin: 0 0 0.875rem;
}

/* ── CTA button (wp namespace) ──────────────────────────────── */
.wp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--text-primary, #111827);
    color: var(--bg-primary, #ffffff);
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.15s;
    flex-shrink: 0;
    white-space: nowrap;
}

    .wp-cta-btn:hover {
        opacity: 0.82;
        text-decoration: none;
        color: var(--bg-primary, #ffffff);
    }

/* ── Notice bar ─────────────────────────────────────────────── */
.wp-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    line-height: 1.5;
}

.wp-notice--info {
    background: var(--color-background-info, #eff6ff);
    color: var(--color-text-info, #1d4ed8);
}

    .wp-notice--info a {
        color: inherit;
        font-weight: 500;
        margin-left: 0.25rem;
    }

.wp-notice--warn {
    background: #fffbeb;
    color: #92400e;
    border: 0.5px solid #fcd34d;
}

.wp-notice svg {
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Icon colour helpers ─────────────────────────────────────── */
.wp-feat-icon--blue, .wp-link-icon--blue {
    background: #E6F1FB;
}

.wp-feat-icon--teal, .wp-link-icon--teal {
    background: #E1F5EE;
}

.wp-feat-icon--amber, .wp-link-icon--amber {
    background: #FAEEDA;
}

.wp-feat-icon--purple, .wp-link-icon--purple {
    background: #EEEDFE;
}

.wp-feat-icon--coral, .wp-link-icon--coral {
    background: #FAECE7;
}

.wp-feat-icon--green, .wp-link-icon--green {
    background: #EAF3DE;
}

.wp-feat-icon--gray, .wp-link-icon--gray {
    background: #F1EFE8;
}


/* ── Public (not signed in) ─────────────────────────────────── */
.wp-public {
    display: flex;
    flex-direction: column;
}

.wp-public-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 4rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.wp-brand-mark {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp-brand-img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.wp-public-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wp-public-features {
    background: var(--bg-secondary, #f9fafb);
    border-top: 0.5px solid var(--border-color, #e5e7eb);
    padding: 3rem 4rem 4rem;
}

.wp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1060px;
    margin: 0 auto;
}

.wp-feat-card {
    background: var(--bg-primary, #ffffff);
    border: 0.5px solid var(--border-color, #e5e7eb);
    border-radius: 12px;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    transition: border-color 0.15s;
}

    .wp-feat-card:hover {
        border-color: var(--border-hover, #d1d5db);
    }

.wp-feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wp-feat-body h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary, #111827);
    margin: 0 0 0.35rem;
}

.wp-feat-body p {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-secondary, #6b7280);
    margin: 0;
}


/* ── Guest / centered states ────────────────────────────────── */
.wp-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem;
    flex: 1;
}

.wp-guest-icon {
    color: var(--text-tertiary, #9ca3af);
    margin-bottom: 1.25rem;
}

.wp-guest-roles {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 0.5px solid var(--border-color, #e5e7eb);
    width: 100%;
    max-width: 460px;
}

.wp-guest-roles-label {
    font-size: 0.8125rem;
    color: var(--text-secondary, #6b7280);
    margin: 0 0 0.75rem;
}

.wp-guest-role-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.wp-role-pill {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bg-secondary, #f3f4f6);
    color: var(--text-secondary, #374151);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    border: 0.5px solid var(--border-color, #e5e7eb);
}


/* ── Signed-in state ────────────────────────────────────────── */
.wp-signed-in {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2rem;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    gap: 2rem;
}

.wp-greeting {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 1.75rem;
    border-bottom: 0.5px solid var(--border-color, #e5e7eb);
}

.wp-greeting-text {
    display: flex;
    flex-direction: column;
}

.wp-role-label {
    font-size: 0.875rem;
    color: var(--text-secondary, #6b7280);
    margin: 0.2rem 0 0;
}

.wp-quicklinks {
    display: flex;
    flex-direction: column;
}

.wp-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
}

.wp-link-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.1rem;
    background: var(--bg-primary, #ffffff);
    border: 0.5px solid var(--border-color, #e5e7eb);
    border-radius: 12px;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
}

    .wp-link-card:hover {
        border-color: var(--border-hover, #d1d5db);
        background: var(--bg-secondary, #f9fafb);
        text-decoration: none;
    }

.wp-link-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wp-link-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary, #111827);
    line-height: 1.2;
}

.wp-link-desc {
    font-size: 0.75rem;
    color: var(--text-tertiary, #9ca3af);
    line-height: 1.4;
}

.wp-platform-strip {
    padding-top: 1.5rem;
    border-top: 0.5px solid var(--border-color, #e5e7eb);
}

.wp-strip-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.375rem;
}

.wp-strip-item {
    font-size: 0.8125rem;
    color: var(--text-secondary, #6b7280);
}

.wp-strip-sep {
    font-size: 0.8125rem;
    color: var(--text-tertiary, #d1d5db);
}


/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 900px) {
    .wp-public-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .wp-public-copy {
        align-items: center;
    }

    .wp-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .wp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wp-public-features {
        padding: 2rem;
    }

    .wp-brand-img {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        gap: 24px;
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 80px var(--space-lg, 1.5rem) 60px;
    }

        .hero h1 {
            font-size: 36px;
        }
}

@media (max-width: 600px) {
    .wp-headline {
        font-size: 2rem;
    }

    .wp-headline--sm {
        font-size: 1.375rem;
    }

    .wp-features-grid {
        grid-template-columns: 1fr;
    }

    .wp-greeting {
        flex-direction: column;
        gap: 1rem;
    }

    .wp-links-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wp-signed-in {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .wp-links-grid {
        grid-template-columns: 1fr;
    }
}


/* =============================================================
   SIGNED-IN VISUAL ENHANCEMENTS
   ============================================================= */

/* Warmer greeting area */
.wp-greeting {
    background: var(--bg-primary, #ffffff);
    border: 0.5px solid var(--border-color, #e5e7eb);
    border-radius: 16px;
    padding: 1.75rem 2rem;
}

/* Lift the headline */
.wp-headline--sm {
    color: var(--text-primary, #111827);
    margin-bottom: 0.25rem;
}

/* Link cards — slightly more substantial */
.wp-link-card {
    background: var(--bg-primary, #ffffff);
    border: 0.5px solid var(--border-color, #e5e7eb);
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

    .wp-link-card:hover {
        border-color: var(--border-hover, #d1d5db);
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        text-decoration: none;
    }

/* Platform strip — slightly warmer */
.wp-platform-strip {
    background: var(--bg-secondary, #f9fafb);
    border: 0.5px solid var(--border-color, #e5e7eb);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

/* =============================================================
   INVITE MODAL (public welcome page)
   ============================================================= */

.wp-toast {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #f0fdf4;
    color: #166534;
    border: 0.5px solid #bbf7d0;
    border-radius: 8px;
    font-size: 0.875rem;
    max-width: 1280px;
    margin: 1rem auto 0;
    width: calc(100% - 4rem);
    box-sizing: border-box;
}

.wp-hero-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.wp-cta-btn--ghost {
    background: transparent;
    color: var(--text-primary, #111827);
    border: 0.5px solid var(--border-color, #e5e7eb);
}

    .wp-cta-btn--ghost:hover {
        background: var(--bg-secondary, #f9fafb);
        opacity: 1;
        color: var(--text-primary, #111827);
    }

.wp-invite-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.wp-invite-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.wp-invite-dialog {
    position: relative;
    z-index: 1;
    background: var(--bg-primary, #ffffff);
    border: 0.5px solid var(--border-color, #e5e7eb);
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.wp-invite-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 0.5px solid var(--border-color, #e5e7eb);
    flex-shrink: 0;
}

    .wp-invite-header h3 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-primary, #111827);
        margin: 0;
    }

.wp-invite-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-tertiary, #9ca3af);
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    line-height: 1;
    transition: background 0.15s;
}

    .wp-invite-close:hover {
        background: var(--bg-secondary, #f3f4f6);
        color: var(--text-primary, #111827);
    }

.wp-invite-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
}

.wp-invite-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

    .wp-invite-field label {
        font-size: 0.8125rem;
        font-weight: 500;
        color: var(--text-secondary, #374151);
        display: flex;
        align-items: center;
        gap: 0.35rem;
    }

.wp-invite-optional {
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--text-tertiary, #9ca3af);
}

.wp-invite-input,
.wp-invite-textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 0.5px solid var(--border-color, #e5e7eb);
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: inherit;
    background: var(--bg-primary, #ffffff);
    color: var(--text-primary, #111827);
    box-sizing: border-box;
    transition: border-color 0.15s;
}

    .wp-invite-input:focus,
    .wp-invite-textarea:focus {
        outline: none;
        border-color: var(--text-primary, #111827);
    }

.wp-invite-textarea {
    resize: vertical;
    min-height: 80px;
}

.wp-invite-check {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.75rem;
    background: var(--bg-secondary, #f9fafb);
    border: 0.5px solid var(--border-color, #e5e7eb);
    border-radius: 8px;
}

.wp-invite-checkbox {
    width: 15px;
    height: 15px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--text-primary, #111827);
    cursor: pointer;
}

.wp-invite-check label {
    font-size: 0.8125rem;
    color: var(--text-secondary, #374151);
    line-height: 1.5;
    cursor: pointer;
}

.wp-invite-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 0.5px solid var(--border-color, #e5e7eb);
    flex-shrink: 0;
}

#inviteSubmitBtn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}