/* ==========================================================================
   Digital Invitations — switchers, effects and motion

   Everything here is decoration. The reduced-motion block at the bottom
   turns all of it off in one place.
   ========================================================================== */

:root {
    --ease-spring: cubic-bezier(.2, .9, .3, 1.2);
    --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
    --ease-swift: cubic-bezier(.4, 0, .1, 1);
}

/* ==========================================================================
   Switchers
   ========================================================================== */
.switcher { position: relative; }

.switch-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: calc(100% - 24px);
    margin: 14px 12px 0;
    padding: 9px 10px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: background .22s var(--ease-swift), border-color .22s, transform .22s var(--ease-spring);
}

.switch-btn:hover { background: rgba(255, 255, 255, .1); border-color: rgba(189, 148, 90, .55); }
.switch-btn:active { transform: scale(.985); }

.switch-btn[aria-expanded="true"] {
    background: rgba(189, 148, 90, .18);
    border-color: var(--gold);
}

.switch-btn .switch-text { flex: 1; min-width: 0; }

.switch-btn .switch-text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.switch-btn .switch-text span {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.switch-btn i {
    color: rgba(255, 255, 255, .45);
    font-size: 11px;
    transition: transform .3s var(--ease-spring);
}

.switch-btn[aria-expanded="true"] i { transform: rotate(180deg); }

.avatar {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--gold), #d9b87e 60%, #a8823f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.avatar.sm { width: 26px; height: 26px; border-radius: 7px; font-size: 10.5px; }

.sidebar-foot.switcher { border-top: 1px solid rgba(255, 255, 255, .1); padding: 4px 0 0; }
.sidebar-foot .switch-btn { margin-bottom: 10px; }

/* popover */
.switch-pop {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 6px);
    z-index: 60;
    background: #221e19;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px) scale(.97);
    transform-origin: top center;
    transition: opacity .22s var(--ease-out-expo), transform .28s var(--ease-spring);
}

.switch-pop.up {
    top: auto;
    bottom: calc(100% + 6px);
    transform: translateY(8px) scale(.97);
    transform-origin: bottom center;
}

.switch-pop.open { opacity: 1; transform: none; }

.menu-head {
    padding: 11px 14px 7px;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .38);
    font-weight: 700;
}

.menu-list { max-height: 280px; overflow-y: auto; padding: 0 6px; }

.menu-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 8px;
    background: none;
    border: 0;
    border-radius: 7px;
    color: rgba(255, 255, 255, .8);
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: background .16s;
    animation: menu-row-in .3s var(--ease-out-expo) both;
}

.menu-list .menu-row:nth-child(1) { animation-delay: .02s; }
.menu-list .menu-row:nth-child(2) { animation-delay: .05s; }
.menu-list .menu-row:nth-child(3) { animation-delay: .08s; }
.menu-list .menu-row:nth-child(4) { animation-delay: .11s; }
.menu-list .menu-row:nth-child(n+5) { animation-delay: .14s; }

@keyframes menu-row-in {
    from { opacity: 0; transform: translateX(-6px); }
    to { opacity: 1; transform: none; }
}

.menu-row:hover { background: rgba(255, 255, 255, .07); }
.menu-row.on { background: rgba(189, 148, 90, .16); }
.menu-row .menu-text { flex: 1; min-width: 0; }

.menu-row .menu-text strong {
    display: block;
    font-size: 13px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-row .menu-text span { display: block; font-size: 11px; color: rgba(255, 255, 255, .45); }
.menu-row i { color: var(--gold); font-size: 12px; }

.menu-dot {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    transition: .2s;
}

.menu-row.on .menu-dot { background: var(--gold); box-shadow: 0 0 0 3px rgba(189, 148, 90, .25); }

.menu-foot { border-top: 1px solid rgba(255, 255, 255, .09); padding: 6px; margin-top: 4px; }

.menu-action {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    padding: 8px;
    background: none;
    border: 0;
    border-radius: 6px;
    color: rgba(255, 255, 255, .72);
    font-family: inherit;
    font-size: 12.5px;
    text-align: left;
    cursor: pointer;
    transition: background .16s, color .16s, padding-left .2s;
}

.menu-action:hover { background: rgba(255, 255, 255, .07); color: #fff; padding-left: 12px; }
.menu-action.danger:hover { background: rgba(176, 72, 63, .2); color: #ffb3ad; }
.menu-action i { width: 14px; font-size: 12px; opacity: .8; }

.menu-note {
    padding: 8px;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .38);
}

/* ==========================================================================
   Sidebar: living background + sliding nav indicator
   ========================================================================== */
/* The aurora needs clipping horizontally, but the sidebar must still
   scroll vertically on short screens. */
.sidebar { position: relative; overflow-x: hidden; overflow-y: auto; }

.sidebar::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 70%;
    background:
        radial-gradient(closest-side, rgba(189, 148, 90, .22), transparent 70%),
        radial-gradient(closest-side, rgba(120, 90, 160, .14), transparent 70%);
    background-size: 70% 70%, 55% 55%;
    background-position: 20% 30%, 80% 60%;
    background-repeat: no-repeat;
    animation: aurora 26s ease-in-out infinite;
    pointer-events: none;
    filter: blur(6px);
}

@keyframes aurora {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: .85; }
    33% { transform: translate3d(6%, 8%, 0) rotate(4deg); opacity: 1; }
    66% { transform: translate3d(-5%, 4%, 0) rotate(-3deg); opacity: .7; }
}

.sidebar > * { position: relative; z-index: 1; }

/* Switcher popovers must sit above the nav, which follows them in the
   document and would otherwise paint over them. */
.sidebar > .switcher { z-index: 20; }
.sidebar > .sidebar-foot.switcher { z-index: 21; }

.nav a { position: relative; overflow: hidden; }

.nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: var(--gold);
    border-radius: 0 3px 3px 0;
    transform: translateY(-50%);
    transition: height .34s var(--ease-spring);
    box-shadow: 0 0 12px rgba(189, 148, 90, .8);
}

.nav a.active::before { height: 68%; }
.nav a.active { border-left-color: transparent; }

.nav a .ico { transition: transform .3s var(--ease-spring); }
.nav a:hover .ico { transform: scale(1.18) rotate(-6deg); }
.nav a.active .ico { color: var(--gold); }

.nav .count { transition: transform .3s var(--ease-spring), background .3s; }
.nav a:hover .count { transform: scale(1.1); }

/* ==========================================================================
   View transitions
   ========================================================================== */
.view.active { animation: view-in .45s var(--ease-out-expo); }

@keyframes view-in {
    from { opacity: 0; transform: translateY(10px); filter: blur(3px); }
    to { opacity: 1; transform: none; filter: blur(0); }
}

/* a silk sweep across the content when the view changes */
.view-sweep {
    position: fixed;
    inset: 0;
    z-index: 45;
    pointer-events: none;
    background: linear-gradient(100deg, transparent 34%,
        rgba(189, 148, 90, .16) 46%, rgba(255, 255, 255, .3) 50%,
        rgba(189, 148, 90, .16) 54%, transparent 66%);
    transform: translateX(-100%);
    animation: sweep .75s var(--ease-out-expo) forwards;
}

@keyframes sweep {
    to { transform: translateX(100%); }
}

/* ==========================================================================
   Cards, tiles, buttons
   ========================================================================== */
/* No `transform-style: preserve-3d` here on purpose. Nothing inside a card
   sits in 3D, and keeping the subtree flat means the controls inside one
   stay exactly where they are hit-tested while the card tilts under the
   pointer — otherwise a button can be a few pixels from where a click
   lands, which is maddening and very hard to see. */
.card {
    transition: transform .4s var(--ease-out-expo), box-shadow .4s, border-color .3s;
}

/* set by motion.js on pointer move */
.tilt {
    transform: perspective(900px)
        rotateX(calc(var(--ty, 0) * -3deg))
        rotateY(calc(var(--tx, 0) * 3deg))
        translateZ(0);
    box-shadow: calc(var(--tx, 0) * -10px) calc(var(--ty, 0) * -10px + 14px) 34px rgba(22, 19, 15, .13);
}

.stat {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.stat::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%),
        rgba(189, 148, 90, .16), transparent 45%);
    opacity: 0;
    transition: opacity .35s;
}

.stat:hover::after { opacity: 1; }

.stat .value {
    background: linear-gradient(180deg, var(--ink), #4a4038);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat.good .value { background: linear-gradient(180deg, #4b8f66, var(--green)); -webkit-background-clip: text; background-clip: text; }
.stat.bad .value { background: linear-gradient(180deg, #c85b51, var(--red)); -webkit-background-clip: text; background-clip: text; }
.stat.wait .value { background: linear-gradient(180deg, #cf9c39, var(--amber)); -webkit-background-clip: text; background-clip: text; }
.stat.accent .value { background: linear-gradient(180deg, #e0c18c, var(--gold-dark)); -webkit-background-clip: text; background-clip: text; }

/* click ripple, spawned by motion.js */
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, .45);
    pointer-events: none;
    animation: ripple-out .62s var(--ease-out-expo) forwards;
}

.btn.ghost .ripple, .icon-btn .ripple { background: rgba(189, 148, 90, .32); }

@keyframes ripple-out {
    to { transform: scale(2.6); opacity: 0; }
}

.btn { position: relative; overflow: hidden; }

.btn:not(.ghost):not(.danger) {
    background-image: linear-gradient(120deg, var(--gold) 0%, #e0c18c 45%, var(--gold) 100%);
    background-size: 220% 100%;
    transition: background-position .6s var(--ease-out-expo), transform .25s var(--ease-spring), box-shadow .3s;
}

.btn:not(.ghost):not(.danger):hover {
    background-position: 100% 0;
    box-shadow: 0 8px 22px rgba(189, 148, 90, .35);
}

.icon-btn { position: relative; overflow: hidden; transition: transform .25s var(--ease-spring), color .2s, background .2s; }
.icon-btn:hover { transform: translateY(-1px) scale(1.08); }

/* rows and lists arrive in sequence */
tbody tr { animation: row-in .4s var(--ease-out-expo) both; }
tbody tr:nth-child(1) { animation-delay: .01s; }
tbody tr:nth-child(2) { animation-delay: .04s; }
tbody tr:nth-child(3) { animation-delay: .07s; }
tbody tr:nth-child(4) { animation-delay: .1s; }
tbody tr:nth-child(5) { animation-delay: .13s; }
tbody tr:nth-child(n+6) { animation-delay: .16s; }

@keyframes row-in {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: none; }
}

.menu-item { animation: row-in .4s var(--ease-out-expo) both; }

/* pills breathe when they change */
.pill.yes { animation: pill-pop .45s var(--ease-spring); }

@keyframes pill-pop {
    0% { transform: scale(.82); }
    60% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

/* progress bars fill with a travelling sheen */
.bar { position: relative; overflow: hidden; }

.bar span { position: relative; overflow: hidden; }

.bar span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, .55) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: bar-sheen 2.6s ease-in-out 1s infinite;
}

@keyframes bar-sheen { to { transform: translateX(200%); } }

/* modal + backdrop */
.modal-backdrop {
    backdrop-filter: blur(5px) saturate(.9);
    -webkit-backdrop-filter: blur(5px) saturate(.9);
    animation: fade-in .25s ease;
}

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.modal { animation: modal-in .42s var(--ease-spring); }

@keyframes modal-in {
    from { opacity: 0; transform: translateY(-22px) scale(.94); }
    to { opacity: 1; transform: none; }
}

/* toasts */
.toast {
    position: relative;
    overflow: hidden;
    animation: toast-in .5s var(--ease-spring);
}

@keyframes toast-in {
    from { opacity: 0; transform: translateX(46px) scale(.9); }
    to { opacity: 1; transform: none; }
}

.toast::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: rgba(255, 255, 255, .45);
    transform-origin: left;
    animation: toast-timer 2.6s linear forwards;
}

.toast.bad::after { animation-duration: 4.5s; }

@keyframes toast-timer { to { transform: scaleX(0); } }

/* chips + theme swatches */
.chip { transition: transform .28s var(--ease-spring), background .2s, border-color .2s, color .2s; }
.chip:hover { transform: translateY(-2px); }
.chip.active { animation: pill-pop .4s var(--ease-spring); }

.theme-opt .preview { transition: transform .35s var(--ease-spring), box-shadow .35s, border-color .25s; }
.theme-opt:hover .preview { transform: translateY(-4px) scale(1.03); box-shadow: 0 14px 28px rgba(22, 19, 15, .16); }
.theme-opt input:checked + .preview { animation: swatch-pick .5s var(--ease-spring); }

@keyframes swatch-pick {
    0% { transform: scale(.9); }
    55% { transform: scale(1.07) translateY(-4px); }
    100% { transform: translateY(0) scale(1); }
}

/* focus rings pulse once */
input:focus, select:focus, textarea:focus { animation: focus-pulse .5s ease; }

@keyframes focus-pulse {
    from { box-shadow: 0 0 0 0 rgba(189, 148, 90, .45); }
    to { box-shadow: 0 0 0 3px rgba(189, 148, 90, .16); }
}

/* the empty-state icon drifts */
.empty .big i { display: inline-block; animation: float 5s ease-in-out infinite; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-7px) rotate(3deg); }
}

/* topbar hairline shimmer */
.topbar { position: relative; }

.topbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(189, 148, 90, .65), transparent);
    background-size: 50% 100%;
    background-repeat: no-repeat;
    animation: hairline 7s linear infinite;
}

@keyframes hairline {
    from { background-position: -60% 0; }
    to { background-position: 160% 0; }
}

/* ==========================================================================
   Reduced motion — one switch turns the whole lot off
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .sidebar::before,
    .bar span::after,
    .toast::after,
    .topbar::after,
    .empty .big i,
    .view.active,
    .modal,
    .modal-backdrop,
    .toast,
    tbody tr,
    .menu-item,
    .menu-row,
    .pill.yes,
    .chip.active,
    .theme-opt input:checked + .preview { animation: none !important; }

    .view-sweep, .ripple { display: none !important; }

    .switch-pop { transition: none; }
    input:focus, select:focus, textarea:focus { animation: none; }
    .tilt { transform: none; }
}

/* ==========================================================================
   Celebration confetti
   ========================================================================== */
.confetti-host {
    position: fixed;
    inset: 0;
    z-index: 90;
    pointer-events: none;
    overflow: hidden;
}

.confetti-host i {
    position: absolute;
    top: -6vh;
    display: block;
    border-radius: 1px;
    opacity: .95;
    animation: confetti-fall linear forwards;
}

@keyframes confetti-fall {
    from { transform: translate3d(0, -10vh, 0) rotate(0deg); opacity: 1; }
    to { transform: translate3d(var(--drift, 0), 108vh, 0) rotate(var(--spin, 540deg)); opacity: .15; }
}

@media (prefers-reduced-motion: reduce) {
    .confetti-host { display: none !important; }
}

/* ==========================================================================
   More
   ========================================================================== */
/* the content area follows the cursor with a faint warm light */
.content { position: relative; }

.content::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(560px circle at var(--spot-x, 50%) var(--spot-y, -20%),
        rgba(189, 148, 90, .07), transparent 60%);
    opacity: 0;
    transition: opacity .6s;
}

.content.lit::before { opacity: 1; }
.content > * { position: relative; z-index: 1; }

/* headline numbers get a slow shimmer */
.stat.accent .value,
.page-head h1 {
    background-size: 220% 100%;
    animation: text-shimmer 9s ease-in-out infinite;
}

@keyframes text-shimmer {
    0%, 100% { background-position: 0 0; }
    50% { background-position: 100% 0; }
}

.page-head h1 {
    background-image: linear-gradient(100deg, var(--ink) 0%, var(--ink) 42%,
        var(--gold) 50%, var(--ink) 58%, var(--ink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* nav badges pulse when their number grows */
.nav .count.bumped { animation: badge-bump .6s var(--ease-spring); }

@keyframes badge-bump {
    0% { transform: scale(1); }
    35% { transform: scale(1.45); background: var(--gold); color: #fff; }
    100% { transform: scale(1); }
}

/* stationery tiles tilt like real cards */
.stationery-tile .tile-preview { transition: transform .5s var(--ease-out-expo), box-shadow .5s; }
.stationery-tile:hover .tile-preview { transform: perspective(700px) rotateX(4deg) translateY(-4px); box-shadow: 0 18px 34px rgba(22, 19, 15, .16); }

/* sidebar icons get a gold halo on the active row */
.nav a.active .ico { filter: drop-shadow(0 0 6px rgba(189, 148, 90, .7)); }

@media (prefers-reduced-motion: reduce) {
    .content::before { display: none; }
    .stat.accent .value, .page-head h1 { animation: none; }
    .page-head h1 { -webkit-text-fill-color: currentColor; background: none; }
    .nav .count.bumped { animation: none; }
}

/* ==========================================================================
   Command palette
   ========================================================================== */
.palette-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(22, 19, 15, .5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 12vh 16px 16px;
    animation: fade-in .18s ease;
}

.palette-backdrop[hidden] { display: none; }

.palette {
    width: 100%;
    max-width: 580px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    overflow: hidden;
    animation: modal-in .3s var(--ease-spring);
}

.palette-input {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
}

.palette-input i { color: var(--muted); }

.palette-input input {
    flex: 1;
    border: 0;
    padding: 0;
    font-size: 16px;
    background: none;
}

.palette-input input:focus { box-shadow: none; animation: none; }

kbd {
    font-family: inherit;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 3px 6px;
}

.palette-list { max-height: 54vh; overflow-y: auto; padding: 6px; }

.palette-group {
    padding: 10px 12px 5px;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.palette-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 7px;
    background: none;
    font-family: inherit;
    font-size: 14px;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
}

.palette-row i { color: var(--muted); width: 16px; }
.palette-row .palette-label { flex: 1; }
.palette-row .palette-hint { font-size: 12px; color: var(--muted); }
.palette-row:hover, .palette-row.on { background: var(--gold-soft); }
.palette-row.on i { color: var(--gold-dark); }

.palette-empty { padding: 26px; text-align: center; color: var(--muted); font-size: 14px; }

.palette-hint-btn kbd { background: none; border-color: var(--line); }

/* ==========================================================================
   Health panel + run of show
   ========================================================================== */
.health-card { border-left: 3px solid var(--amber); }

.health-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.health-row:last-child { border-bottom: 0; }
.health-row span { flex: 1; }
.health-row .health-warn { color: var(--amber); }
.health-row .health-info { color: var(--blue); }

.run-list { position: relative; }

.run-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    transition: background .2s;
}

.run-item:last-child { border-bottom: 0; }
.run-item:hover { background: #fdfbf8; }

.run-time {
    flex: 0 0 92px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.2;
}

.run-time .run-dur { display: block; font-family: 'Nunito Sans', sans-serif; font-size: 11px; color: var(--muted); font-weight: 400; }

.run-body { flex: 1; min-width: 0; }
.run-body strong { display: block; color: var(--ink); font-size: 15px; }
.run-body .run-owner { display: inline-block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); margin-top: 3px; }
.run-body .run-note { display: block; font-size: 13px; color: var(--muted); margin-top: 3px; }

.run-actions { display: flex; gap: 2px; }

.guestbook-note .note-text { white-space: pre-line; font-size: 15px; color: var(--body); }

@media (prefers-reduced-motion: reduce) {
    .palette-backdrop, .palette { animation: none; }
}
