/* ==========================================================================
   Match Profile Page Styles
   ========================================================================== */

.hh-match-profile {
    --hh-mp-sticky-max-height: 8rem;
    --hh-mp-sticky-offset: calc(72px + env(safe-area-inset-bottom, 0px) + var(--hh-android-mobile-nav-lift, 0px));
    width: 100%;
    min-width: 0;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 0 calc(var(--hh-mp-sticky-max-height) + var(--hh-mp-sticky-offset));
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.hh-match-profile > * {
    min-width: 0;
    max-width: 100%;
}

.hh-mp-back {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: var(--hh-z-card-overlay);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--hh-dark-surface);
    color: var(--hh-text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--hh-shadow-sm);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hh-mp-back:hover {
    background: var(--hh-dark-elevated);
    transform: scale(1.05);
}

.hh-mp-back:focus-visible {
    outline: 2px solid var(--hh-accent);
    outline-offset: 2px;
}

.hh-match-profile-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 1rem;
    position: relative;
}

.hh-match-profile-error {
    max-width: 400px;
    margin: 4rem auto;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--hh-dark-surface);
    border: 1px solid var(--hh-glass-border);
    border-radius: var(--hh-radius-lg);
}

.hh-match-profile-error h2 {
    margin: 1rem 0 0.5rem;
    font-size: 1.25rem;
}

.hh-match-profile-error p {
    color: var(--hh-text-secondary);
    margin: 0 0 1.5rem;
    font-size: 0.9rem;
}

/* ── Photo Gallery ── */
.hh-mp-gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--hh-radius-lg);
    overflow: hidden;
    background: var(--hh-dark-elevated);
}

.hh-mp-gallery-viewport {
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.hh-mp-gallery-viewport::-webkit-scrollbar {
    display: none;
}

.hh-mp-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.hh-mp-gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hh-dark-elevated);
}

.hh-mp-gallery-placeholder .mud-icon-root {
    font-size: 4rem !important;
    color: var(--hh-text-muted);
}

.hh-mp-gallery-status {
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1rem, 5vw, 2rem);
    text-align: center;
    color: var(--hh-text-secondary);
}

.hh-mp-gallery-status > p,
.hh-mp-gallery-status-copy p {
    max-width: 28rem;
    margin: 0;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.hh-mp-gallery-status-copy {
    display: flex;
    min-width: 0;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hh-mp-gallery-retry {
    min-width: 44px;
    min-height: 44px;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
}

.hh-mp-gallery-retry:focus-visible {
    outline: 3px solid var(--hh-accent);
    outline-offset: 3px;
}

.hh-mp-gallery-notice {
    position: absolute;
    right: 0.75rem;
    bottom: 3.75rem;
    left: 0.75rem;
    z-index: var(--hh-z-card-stack);
    margin: 0 auto;
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--hh-radius-md);
    background: rgba(0, 0, 0, 0.72);
    color: white;
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: center;
    overflow-wrap: anywhere;
}

.hh-mp-gallery-counter {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: var(--hh-z-card-stack);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hh-mp-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--hh-text-inverse);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    z-index: var(--hh-z-card-stack);
}

.hh-mp-gallery-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.hh-mp-gallery-nav:focus-visible,
.hh-mp-gallery-dot:focus-visible {
    outline: 3px solid var(--hh-accent);
    outline-offset: 3px;
}

.hh-mp-gallery-nav:disabled {
    opacity: 0.3;
    cursor: default;
    transform: translateY(-50%);
}

.hh-mp-gallery-prev {
    left: 12px;
}

.hh-mp-gallery-next {
    right: 12px;
}

.hh-mp-gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: var(--hh-z-card-stack);
}

.hh-mp-gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
    padding: 17px;
    background-clip: content-box;
    box-sizing: content-box;
}

.hh-mp-gallery-dot.active {
    width: 24px;
    border-radius: 999px;
    background: white;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* ── Profile Header ── */
.hh-mp-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 0 0.5rem;
}

.hh-mp-header-info {
    min-width: 0;
    max-width: 100%;
}

.hh-mp-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: var(--hh-text-primary);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hh-mp-location,
.hh-mp-occupation {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--hh-text-secondary);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    min-width: 0;
    max-width: 100%;
}

.hh-mp-location > span,
.hh-mp-occupation > span {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hh-mp-location .mud-icon-root,
.hh-mp-occupation .mud-icon-root {
    flex-shrink: 0;
}

.hh-mp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    min-width: 0;
    max-width: 100%;
}

.hh-mp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hh-mp-badge .mud-icon-root {
    flex-shrink: 0;
}

.hh-mp-badge-verified {
    background: rgba(var(--hh-success-rgb), 0.12);
    color: var(--hh-success);
    border: 1px solid rgba(var(--hh-success-rgb), 0.25);
}

/* ── Compatibility Hero Card ── */
.hh-mp-compat-hero {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem !important;
}

.hh-mp-compat-hero-score {
    text-align: center;
    flex-shrink: 0;
}

.hh-mp-compat-ring {
    width: 100px;
    height: 100px;
    position: relative;
}

.hh-mp-compat-ring svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.hh-mp-compat-ring-bg {
    fill: none;
    stroke: var(--hh-glass-border);
    stroke-width: 6;
}

.hh-mp-compat-ring-fill {
    fill: none;
    stroke: url(#compat-gradient);
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dasharray 1s ease;
}

/* Inline gradient for compatibility ring — fallback to primary */
.hh-mp-compat-ring-fill {
    stroke: var(--hh-primary);
}

.hh-mp-compat-ring-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hh-primary);
}

.hh-mp-compat-label {
    font-size: 0.75rem;
    color: var(--hh-text-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.hh-mp-compat-hero-details {
    flex: 1;
    width: 100%;
    min-width: 0;
}

.hh-mp-compat-hero-details h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.hh-mp-match-reasons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hh-mp-match-reasons li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--hh-text-secondary);
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hh-mp-match-reasons .mud-icon-root {
    flex-shrink: 0;
    margin-top: 0.15em;
}

.hh-mp-ai-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.75rem 0 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--hh-glass-border);
    color: var(--hh-text-primary);
    font-size: 0.8rem;
    font-weight: 700;
}

.hh-mp-ai-summary {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--hh-text-secondary);
    font-style: italic;
    margin: 0.4rem 0 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hh-mp-ai-boundary {
    margin: 0.35rem 0 0;
    color: var(--hh-text-secondary);
    font-size: 0.75rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

/* ── Sections ── */
.hh-mp-section {
    padding: 1.25rem !important;
    min-width: 0;
}

.hh-mp-section-title {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--hh-text-primary);
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hh-mp-section-title .mud-icon-root {
    color: var(--hh-primary);
    flex-shrink: 0;
}

/* ── Compatibility Bars ── */
.hh-mp-compat-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hh-mp-compat-bar-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.35rem 0.75rem;
    align-items: center;
    font-size: 0.85rem;
}

.hh-mp-compat-bar-row>span:first-child {
    grid-column: 1;
    grid-row: 1;
    color: var(--hh-text-secondary);
    font-weight: 500;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hh-mp-compat-bar {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
    height: 8px;
    background: var(--hh-surface-soft);
    border-radius: 999px;
    overflow: hidden;
}

.hh-mp-compat-bar-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 1s ease;
    min-width: 0;
}

.hh-mp-bar-personality {
    background: var(--hh-primary);
}

.hh-mp-bar-interests {
    background: var(--hh-accent);
}

.hh-mp-bar-lifestyle {
    background: var(--hh-secondary);
}

.hh-mp-bar-values {
    background: var(--hh-success);
}

.hh-mp-bar-intent {
    background: var(--hh-primary-light);
}

.hh-mp-compat-bar-pct {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--hh-text-primary);
}

/* ── Bio ── */
.hh-mp-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--hh-text-secondary);
    margin: 0;
    white-space: pre-line;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* ── Tags / Chips ── */
.hh-mp-tags-group {
    margin-bottom: 1rem;
}

.hh-mp-tags-group:last-child {
    margin-bottom: 0;
}

.hh-mp-tags-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--hh-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.hh-mp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    min-width: 0;
}

.hh-mp-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hh-mp-chip-personality {
    background: rgba(var(--hh-primary-rgb), 0.12);
    color: var(--hh-primary-light, #ff6eb4);
    border: 1px solid rgba(var(--hh-primary-rgb), 0.25);
}

.hh-mp-chip-interest {
    background: rgba(var(--hh-secondary-rgb), 0.12);
    color: var(--hh-secondary);
    border: 1px solid rgba(var(--hh-secondary-rgb), 0.25);
}

/* ── Lifestyle Details Grid ── */
.hh-mp-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    min-width: 0;
}

.hh-mp-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.6rem 0.75rem;
    background: var(--hh-surface-soft);
    border-radius: var(--hh-radius-md);
    border: 1px solid var(--hh-glass-border);
    min-width: 0;
}

.hh-mp-detail-item > div {
    min-width: 0;
}

.hh-mp-detail-item .mud-icon-root {
    color: var(--hh-primary);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.hh-mp-detail-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--hh-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hh-mp-detail-value {
    display: block;
    font-size: 0.875rem;
    color: var(--hh-text-primary);
    font-weight: 500;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* ── Floating Action Bar (always visible) ── */
.hh-mp-sticky-actions {
    position: fixed;
    bottom: var(--hh-mp-sticky-offset);
    left: 0;
    right: 0;
    z-index: var(--hh-z-sticky);
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--hh-chrome-mobile-nav-bg);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-top: 1px solid var(--hh-glass-border);
    justify-content: center;
    max-height: min(var(--hh-mp-sticky-max-height), calc(100dvh - var(--hh-mp-sticky-offset) - env(safe-area-inset-top, 0px)));
    overflow-y: auto;
    overscroll-behavior: contain;
}

.hh-mp-sticky-actions .hh-mp-action-btn {
    flex: 1 1 7rem;
    min-width: 44px;
    max-width: 280px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

@media (min-width: 769px) {
    .hh-match-profile {
        --hh-mp-sticky-offset: 0px;
    }

    .hh-mp-sticky-actions {
        max-width: 600px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: var(--hh-radius-lg) var(--hh-radius-lg) 0 0;
    }
}

/* ── Action Buttons (bottom of page — secondary) ── */
.hh-mp-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.hh-mp-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    border: 1px solid transparent;
    font-family: var(--hh-font-family);
    min-width: 44px;
    min-height: 44px;
    max-width: 100%;
    line-height: 1.3;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hh-mp-action-btn:focus-visible,
.hh-mp-dialog-actions .btn:focus-visible {
    outline: 3px solid var(--hh-accent);
    outline-offset: 3px;
}

.hh-mp-action-message {
    background: var(--hh-primary);
    color: var(--hh-text-inverse);
}

.hh-mp-action-message:hover {
    background: var(--hh-primary-dark);
    box-shadow: var(--hh-shadow-md);
}

.hh-mp-action-icebreaker {
    background: rgba(var(--hh-secondary-rgb), 0.15);
    color: var(--hh-secondary);
    border-color: rgba(var(--hh-secondary-rgb), 0.3);
}

.hh-mp-action-icebreaker:hover {
    background: rgba(var(--hh-secondary-rgb), 0.25);
    transform: translateY(-2px);
}

.hh-mp-action-unmatch {
    background: transparent;
    color: var(--hh-text-muted);
    border-color: rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

.hh-mp-action-unmatch:hover {
    color: var(--hh-danger);
    border-color: rgba(var(--hh-danger-rgb), 0.3);
    background: rgba(var(--hh-danger-rgb), 0.08);
}

/* ── Unmatch Dialog ── */
.hh-mp-dialog-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--hh-z-critical);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 0;
}

.hh-mp-dialog {
    max-width: 100%;
    width: 100%;
    max-height: calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: clamp(0.75rem, 4vw, 1.5rem);
    padding-bottom: calc(clamp(0.75rem, 4vw, 1.5rem) + env(safe-area-inset-bottom, 0px));
    text-align: center;
    border-radius: 20px 20px 0 0;
    animation: slideUpSheet 0.3s ease;
    overflow-wrap: anywhere;
    word-break: break-word;
}

dialog.hh-native-dialog.hh-mp-dialog {
    position: fixed;
    inset: auto 0 0;
    margin: 0;
    background: var(--hh-dark-surface);
}

.hh-mp-dialog h3 {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
}

.hh-mp-dialog p {
    font-size: 0.875rem;
    color: var(--hh-text-secondary);
    margin: 0 0 1.25rem;
    line-height: 1.5;
}

.hh-mp-dialog .hh-error-message {
    padding: 0.75rem;
    color: var(--hh-danger);
    background: rgba(var(--hh-danger-rgb), 0.1);
    border: 1px solid rgba(var(--hh-danger-rgb), 0.35);
    border-radius: var(--hh-radius-md);
}

.hh-mp-dialog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.hh-mp-dialog-actions .btn {
    flex: 1 1 8rem;
    min-width: 44px;
    min-height: 44px;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* ── Responsive: Tablet+ ── */
@media (min-width: 601px) {
    .hh-mp-compat-hero {
        flex-direction: row;
        text-align: left;
    }

    .hh-mp-details-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .hh-mp-header {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }

    .hh-mp-compat-bar-row {
        grid-template-columns: 90px minmax(0, 1fr) 45px;
        gap: 0.75rem;
    }

    .hh-mp-compat-bar-row>span:first-child {
        grid-column: 1;
        grid-row: 1;
    }

    .hh-mp-compat-bar {
        grid-column: 2;
        grid-row: 1;
    }

    .hh-mp-compat-bar-pct {
        grid-column: 3;
        grid-row: 1;
    }
}

@media (min-width: 769px) {
    .hh-mp-dialog-overlay {
        align-items: center;
        padding: 1rem;
    }

    .hh-mp-dialog {
        max-width: 400px;
        border-radius: var(--hh-radius-xl, 16px);
        animation: none;
    }

    dialog.hh-native-dialog.hh-mp-dialog {
        inset: 0;
        margin: auto;
    }
}

@media (max-height: 520px) {
    .hh-mp-sticky-actions {
        padding-block: 0.5rem;
    }

    .hh-mp-dialog h3 {
        margin-bottom: 0.5rem;
    }

    .hh-mp-dialog p {
        margin-bottom: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hh-match-profile *,
    .hh-mp-dialog {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media (forced-colors: active) {
    .hh-mp-section,
    .hh-mp-badge,
    .hh-mp-detail-item,
    .hh-mp-gallery-notice,
    .hh-mp-sticky-actions,
    .hh-mp-dialog {
        border-color: CanvasText;
        forced-color-adjust: auto;
    }

    .hh-mp-compat-ring-fill {
        stroke: Highlight;
    }

    .hh-mp-compat-bar-fill,
    .hh-mp-gallery-dot.active {
        background: Highlight;
    }

    .hh-mp-back:focus-visible,
    .hh-mp-gallery-nav:focus-visible,
    .hh-mp-gallery-dot:focus-visible,
    .hh-mp-action-btn:focus-visible,
    .hh-mp-dialog-actions .btn:focus-visible,
    .hh-mp-gallery-retry:focus-visible {
        outline-color: Highlight;
    }
}
