/* ═══════════════════════════════════════════════════
 * FRAMED MINDS — BRIDGES
 * Visual identity: warm, calm, emotionally safe
 * ═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --fm-neutral:          #151515;
    --fm-cta-green:        #BCCF97;
    --fm-cta-green-hover:  #9FAF80;
    --fm-bg-white:         #FFFFFF;
    --fm-warm-neutral:     #F4F1E8;
    --fm-accent-green:     #96CA42;
    --fm-gradient-beige:   #E9E2D0;
    --fm-border:           #E7EAED;
    --fm-text-secondary:   #4A5560;
    --fm-text-meta:        #A0A7B0;
    --fm-heal-teal:        #3A5A40;
    --fm-olive:            #647C36;
    --fm-bamboo:           #41AA54;
    --fm-mastery-gold:     #C9A857;
    --fm-error:            #EB5757;
    --fm-info:             #2F80ED;

    --fm-radius-sm:   8px;
    --fm-radius-md:   12px;
    --fm-radius-lg:   16px;
    --fm-radius-xl:   20px;

    --fm-space-xs:  8px;
    --fm-space-sm:  12px;
    --fm-space-md:  20px;
    --fm-space-lg:  32px;
    --fm-space-xl:  48px;

    --fm-shadow-soft:  0 2px 12px rgba(0, 0, 0, 0.06);
    --fm-shadow-lift:  0 4px 20px rgba(0, 0, 0, 0.08);

    --fm-transition:   0.25s ease;
}

/* ── Base Container ── */
.fm-bridges {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--fm-space-md);
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--fm-neutral);
    line-height: 1.6;
}

/* ── Header ── */
.fm-bridges__header {
    text-align: center;
    padding: var(--fm-space-xl) 0 var(--fm-space-lg);
}

.fm-bridges__header-icon {
    margin-bottom: var(--fm-space-sm);
    opacity: 0.85;
}

.fm-bridges__title {
    font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--fm-neutral);
    margin: 0 0 var(--fm-space-xs);
    letter-spacing: -0.3px;
}

.fm-bridges__subtitle {
    font-size: 15px;
    color: var(--fm-text-secondary);
    margin: 0;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Concept Explanation ── */
.fm-bridges__concept {
    margin-bottom: var(--fm-space-lg);
}

.fm-bridges__concept-inner {
    padding: var(--fm-space-md) var(--fm-space-md);
    background: var(--fm-warm-neutral);
    border-radius: var(--fm-radius-lg);
    border: 1px solid var(--fm-border);
}

.fm-bridges__concept-lead {
    font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--fm-neutral);
    margin: 0 0 var(--fm-space-xs);
    line-height: 1.5;
}

.fm-bridges__concept-body {
    font-size: 14px;
    color: var(--fm-text-secondary);
    margin: 0 0 var(--fm-space-md);
    line-height: 1.65;
}

.fm-bridges__concept-types {
    display: flex;
    gap: var(--fm-space-sm);
}

.fm-bridges__concept-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: var(--fm-space-sm) var(--fm-space-sm);
    margin-bottom: var(--fm-space-md);
    background: var(--fm-bg-white);
    border-radius: var(--fm-radius-sm);
    border-left: 3px solid var(--fm-heal-teal);
}

.fm-bridges__concept-note svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.fm-bridges__concept-note p {
    font-size: 13px;
    color: var(--fm-text-secondary);
    margin: 0;
    line-height: 1.6;
}

.fm-bridges__concept-note em {
    color: var(--fm-heal-teal);
    font-style: italic;
    font-weight: 600;
}

.fm-bridges__concept-type {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
    padding: var(--fm-space-sm);
    background: var(--fm-bg-white);
    border-radius: var(--fm-radius-md);
    border: 1px solid var(--fm-border);
}

.fm-bridges__concept-type svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.fm-bridges__concept-type-name {
    display: block;
    font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--fm-neutral);
}

.fm-bridges__concept-type-desc {
    display: block;
    font-size: 12px;
    color: var(--fm-text-meta);
    margin-top: 2px;
}

/* ── Section ── */
.fm-bridges__section {
    margin-bottom: var(--fm-space-xl);
}

.fm-bridges__section-title {
    font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--fm-neutral);
    margin: 0 0 4px;
}

.fm-bridges__section-desc {
    font-size: 14px;
    color: var(--fm-text-secondary);
    margin: 0 0 var(--fm-space-md);
}

/* ── Notice Block ── */
.fm-bridges__notice {
    display: flex;
    gap: var(--fm-space-sm);
    padding: var(--fm-space-md);
    border-radius: var(--fm-radius-md);
    background: var(--fm-warm-neutral);
    border: 1px solid var(--fm-border);
    margin-bottom: var(--fm-space-lg);
}

.fm-bridges__notice--warm {
    border-left: 3px solid var(--fm-heal-teal);
}

.fm-bridges__notice-icon {
    flex-shrink: 0;
    padding-top: 2px;
}

.fm-bridges__notice-title {
    font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    margin: 0 0 6px;
    color: var(--fm-neutral);
}

.fm-bridges__notice-text {
    font-size: 14px;
    color: var(--fm-text-secondary);
    margin: 0 0 var(--fm-space-sm);
}

/* ── Empty State ── */
.fm-bridges__empty {
    text-align: center;
    padding: var(--fm-space-xl) var(--fm-space-md);
    background: var(--fm-warm-neutral);
    border-radius: var(--fm-radius-lg);
    border: 1px solid var(--fm-border);
}

.fm-bridges__empty p {
    font-size: 15px;
    color: var(--fm-text-secondary);
    margin: var(--fm-space-sm) 0 0;
}

.fm-bridges__empty-sub {
    font-size: 13px !important;
    color: var(--fm-text-meta) !important;
    margin-bottom: var(--fm-space-md) !important;
}

/* ── Friends Grid ── */
.fm-bridges__friends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--fm-space-sm);
}

.fm-bridges__friend-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--fm-space-md) var(--fm-space-sm);
    border-radius: var(--fm-radius-md);
    background: var(--fm-bg-white);
    border: 1.5px solid var(--fm-border);
    cursor: pointer;
    transition: all var(--fm-transition);
    text-align: center;
}

.fm-bridges__friend-card:hover {
    border-color: var(--fm-cta-green);
    box-shadow: var(--fm-shadow-lift);
    transform: translateY(-2px);
}

.fm-bridges__friend-card--unavailable {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

.fm-bridges__friend-card--unavailable:hover {
    border-color: var(--fm-border);
    box-shadow: none;
    transform: none;
}

.fm-bridges__friend-avatar-wrap {
    position: relative;
    margin-bottom: var(--fm-space-xs);
}

.fm-bridges__friend-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--fm-warm-neutral);
}

.fm-bridges__friend-ready {
    position: absolute;
    bottom: -2px;
    right: -2px;
}

.fm-bridges__friend-name {
    font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--fm-neutral);
    line-height: 1.3;
    word-break: break-word;
}

.fm-bridges__friend-status {
    font-size: 11px;
    color: var(--fm-text-meta);
    margin-top: 4px;
    font-style: italic;
}

/* ── Buttons ── */
.fm-bridges__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--fm-radius-sm);
    font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--fm-transition);
    text-decoration: none;
    line-height: 1.4;
}

.fm-bridges__btn--primary {
    background: var(--fm-cta-green);
    color: var(--fm-neutral);
    border: 1.5px solid var(--fm-cta-green);
}

.fm-bridges__btn--primary:hover {
    background: var(--fm-cta-green-hover);
    color: #FFFFFF;
}

.fm-bridges__btn--secondary {
    background: var(--fm-warm-neutral);
    color: var(--fm-neutral);
    border: 1.5px solid var(--fm-border);
}

.fm-bridges__btn--secondary:hover {
    background: #E9E4D9;
    border-color: #D5D9DD;
}

.fm-bridges__btn--full {
    width: 100%;
}

.fm-bridges__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── Modal ── */
.fm-bridges__modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 21, 21, 0.45);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--fm-space-md);
    animation: fm-bridges-fadeIn 0.3s ease;
}

.fm-bridges__modal {
    background: var(--fm-bg-white);
    border-radius: var(--fm-radius-xl);
    padding: var(--fm-space-lg);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    animation: fm-bridges-slideUp 0.35s ease;
}

.fm-bridges__modal-close {
    position: absolute;
    top: var(--fm-space-sm);
    right: var(--fm-space-sm);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background var(--fm-transition);
}

.fm-bridges__modal-close:hover {
    background: var(--fm-warm-neutral);
}

.fm-bridges__modal-header {
    text-align: center;
    margin-bottom: var(--fm-space-md);
}

.fm-bridges__modal-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--fm-warm-neutral);
    margin-bottom: var(--fm-space-xs);
}

.fm-bridges__modal-name {
    font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: var(--fm-neutral);
}

.fm-bridges__modal-intro {
    text-align: center;
    font-size: 14px;
    color: var(--fm-text-secondary);
    margin: 0 0 var(--fm-space-md);
}

/* ── Bond Type Cards ── */
.fm-bridges__bond-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--fm-space-sm);
    margin-bottom: var(--fm-space-md);
}

.fm-bridges__bond-option input[type="radio"] {
    display: none;
}

.fm-bridges__bond-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--fm-space-md) var(--fm-space-sm);
    border-radius: var(--fm-radius-md);
    border: 1.5px solid var(--fm-border);
    background: var(--fm-bg-white);
    cursor: pointer;
    transition: all var(--fm-transition);
    color: var(--fm-text-secondary);
}

.fm-bridges__bond-option input:checked + .fm-bridges__bond-card {
    border-color: var(--fm-heal-teal);
    background: rgba(58, 90, 64, 0.04);
    color: var(--fm-heal-teal);
}

.fm-bridges__bond-card:hover {
    border-color: var(--fm-cta-green);
}

.fm-bridges__bond-label {
    font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin-top: var(--fm-space-xs);
    color: var(--fm-neutral);
}

.fm-bridges__bond-desc {
    font-size: 11px;
    color: var(--fm-text-meta);
    margin-top: 4px;
    line-height: 1.4;
}

/* ── Consent Notice ── */
.fm-bridges__consent-notice {
    display: flex;
    gap: var(--fm-space-xs);
    align-items: flex-start;
    padding: var(--fm-space-sm) var(--fm-space-sm);
    background: var(--fm-warm-neutral);
    border-radius: var(--fm-radius-sm);
    margin-bottom: var(--fm-space-md);
}

.fm-bridges__consent-notice svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.fm-bridges__consent-notice p {
    font-size: 12px;
    color: var(--fm-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ── Payment Options ── */
.fm-bridges__payment {
    margin-bottom: var(--fm-space-md);
}

.fm-bridges__payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--fm-space-sm);
}

.fm-bridges__payment-option {
    /* Flex container so the card stretches to the full grid-cell height,
       keeping Growth Points (3 lines) and Purchase (2 lines) the same size. */
    display: flex;
}

.fm-bridges__payment-option input[type="radio"] {
    display: none;
}

.fm-bridges__payment-card {
    display: flex;
    flex: 1;                     /* fill the label width */
    flex-direction: column;
    align-items: center;
    justify-content: center;     /* vertically center content in the taller card */
    text-align: center;
    box-sizing: border-box;
    min-height: 100%;            /* match the tallest card in the row */
    padding: var(--fm-space-sm) var(--fm-space-xs);
    border-radius: var(--fm-radius-md);
    border: 1.5px solid var(--fm-border);
    background: var(--fm-bg-white);
    cursor: pointer;
    transition: all var(--fm-transition);
}

.fm-bridges__payment-option input:checked + .fm-bridges__payment-card {
    border-color: var(--fm-heal-teal);
    background: rgba(58, 90, 64, 0.04);
}

.fm-bridges__payment-card:hover {
    border-color: var(--fm-cta-green);
}

.fm-bridges__payment-card--disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.fm-bridges__payment-label {
    font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--fm-neutral);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fm-bridges__payment-detail {
    font-size: 18px;
    font-weight: 700;
    color: var(--fm-heal-teal);
    margin: 4px 0;
}

.fm-bridges__payment-balance {
    font-size: 11px;
    color: var(--fm-text-meta);
}

/* ── Loading State ── */
.fm-bridges__loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(244, 241, 232, 0.92);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fm-bridges-fadeIn 0.3s ease;
}

.fm-bridges__loading-inner {
    text-align: center;
    padding: var(--fm-space-lg);
}

.fm-bridges__loading-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--fm-space-lg);
}

.fm-bridges__loading-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--fm-heal-teal);
    animation: fm-bridges-pulse 1.8s ease-in-out infinite;
}

.fm-bridges__loading-dot:last-child {
    animation-delay: 0.6s;
}

.fm-bridges__loading-bridge {
    width: 64px;
    height: 3px;
    background: var(--fm-border);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    margin: 0 4px;
}

.fm-bridges__loading-bridge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--fm-accent-green), transparent);
    animation: fm-bridges-bridge-sweep 1.8s ease-in-out infinite;
}

.fm-bridges__loading-text {
    font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--fm-neutral);
    margin: 0 0 var(--fm-space-xs);
}

.fm-bridges__loading-sub {
    font-size: 13px;
    color: var(--fm-text-meta);
    margin: 0;
}

/* ── Report ── */
.fm-bridges__report-container {
    animation: fm-bridges-fadeIn 0.4s ease;
}

.fm-bridges__report-header {
    text-align: center;
    padding: var(--fm-space-lg) 0;
    border-bottom: 1px solid var(--fm-border);
    margin-bottom: var(--fm-space-lg);
}

.fm-bridges__report-participants {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--fm-space-sm);
    margin-bottom: var(--fm-space-sm);
}

.fm-bridges__report-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--fm-warm-neutral);
}

.fm-bridges__report-bridge-icon {
    opacity: 0.7;
}

.fm-bridges__report-title {
    font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--fm-neutral);
    margin: 0 0 var(--fm-space-xs);
}

.fm-bridges__report-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--fm-heal-teal);
    background: rgba(58, 90, 64, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Report Body (Echo-generated HTML) ── */
.fm-bridges__report-body {
    padding: 0 0 var(--fm-space-lg);
}

.fm-bridges__report-body .bridge-section {
    margin-bottom: var(--fm-space-lg);
    padding: var(--fm-space-md) var(--fm-space-md);
    background: var(--fm-bg-white);
    border-radius: var(--fm-radius-md);
    border: 1px solid var(--fm-border);
}

.fm-bridges__report-body .bridge-section__title {
    font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--fm-neutral);
    margin: 0 0 var(--fm-space-sm);
    padding-bottom: var(--fm-space-xs);
    border-bottom: 2px solid var(--fm-warm-neutral);
}

.fm-bridges__report-body .bridge-section p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--fm-text-secondary);
    margin: 0 0 var(--fm-space-sm);
}

.fm-bridges__report-body .bridge-section p:last-child {
    margin-bottom: 0;
}

.fm-bridges__report-body .bridge-section strong {
    color: var(--fm-neutral);
    font-weight: 600;
}

/* Section accent borders */
.fm-bridges__report-body .bridge-section--overview {
    border-left: 3px solid var(--fm-heal-teal);
}

.fm-bridges__report-body .bridge-section--harmony {
    border-left: 3px solid var(--fm-accent-green);
}

.fm-bridges__report-body .bridge-section--watchout {
    border-left: 3px solid var(--fm-mastery-gold);
}

.fm-bridges__report-body .bridge-section--communicate {
    border-left: 3px solid var(--fm-info);
}

.fm-bridges__report-body .bridge-section--closing {
    border-left: 3px solid var(--fm-cta-green);
    background: var(--fm-warm-neutral);
}

/* ── Report Actions ── */
.fm-bridges__report-actions {
    display: flex;
    justify-content: space-between;
    gap: var(--fm-space-sm);
    padding-top: var(--fm-space-md);
    border-top: 1px solid var(--fm-border);
}

/* ── History ── */
.fm-bridges__history {
    margin-top: var(--fm-space-xl);
    padding-top: var(--fm-space-lg);
    border-top: 1px solid var(--fm-border);
}

.fm-bridges__history-list {
    display: flex;
    flex-direction: column;
    gap: var(--fm-space-xs);
}

.fm-bridges__history-card {
    display: flex;
    align-items: center;
    gap: var(--fm-space-sm);
    padding: var(--fm-space-sm) var(--fm-space-md);
    border-radius: var(--fm-radius-md);
    background: var(--fm-bg-white);
    border: 1px solid var(--fm-border);
    cursor: pointer;
    transition: all var(--fm-transition);
}

.fm-bridges__history-card:hover {
    border-color: var(--fm-cta-green);
    box-shadow: var(--fm-shadow-soft);
}

.fm-bridges__history-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.fm-bridges__history-info {
    flex: 1;
    min-width: 0;
}

.fm-bridges__history-name {
    display: block;
    font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--fm-neutral);
}

.fm-bridges__history-type {
    display: block;
    font-size: 12px;
    color: var(--fm-text-meta);
}

.fm-bridges__history-date {
    font-size: 12px;
    color: var(--fm-text-meta);
    flex-shrink: 0;
}

.fm-bridges__history-arrow {
    flex-shrink: 0;
    opacity: 0.5;
}

/* ── Login State ── */
.fm-bridges-login {
    text-align: center;
    padding: var(--fm-space-xl);
    color: var(--fm-text-secondary);
}

/* ── Animations ── */
@keyframes fm-bridges-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fm-bridges-slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fm-bridges-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50%      { transform: scale(1.3); opacity: 1; }
}

@keyframes fm-bridges-bridge-sweep {
    0%   { left: -100%; }
    100% { left: 100%; }
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .fm-bridges {
        padding: var(--fm-space-sm);
    }

    .fm-bridges__title {
        font-size: 24px;
    }

    .fm-bridges__friends-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--fm-space-xs);
    }

    .fm-bridges__friend-card {
        padding: var(--fm-space-sm) var(--fm-space-xs);
    }

    .fm-bridges__friend-avatar {
        width: 44px;
        height: 44px;
    }

    .fm-bridges__friend-name {
        font-size: 11px;
    }

    .fm-bridges__modal {
        padding: var(--fm-space-md);
        border-radius: var(--fm-radius-lg);
        margin: var(--fm-space-sm);
    }

    .fm-bridges__bond-types {
        grid-template-columns: 1fr;
    }

    .fm-bridges__concept-types {
        flex-direction: column;
    }

    .fm-bridges__payment-options {
        grid-template-columns: 1fr;
    }

    .fm-bridges__report-actions {
        flex-direction: column;
    }

    .fm-bridges__report-actions .fm-bridges__btn {
        width: 100%;
    }

    .fm-bridges__report-body .bridge-section {
        padding: var(--fm-space-sm);
    }
}
