:root {
    --app-safe-top: var(--safe-area-inset-top, env(safe-area-inset-top, 0px));
    --app-safe-right: var(--safe-area-inset-right, env(safe-area-inset-right, 0px));
    --app-safe-bottom: var(--safe-area-inset-bottom, env(safe-area-inset-bottom, 0px));
    --app-safe-left: var(--safe-area-inset-left, env(safe-area-inset-left, 0px));
}

[hidden] {
    display: none !important;
}

html.is-native-app body {
    min-height: 100dvh;
    padding-top: var(--app-safe-top);
    padding-right: var(--app-safe-right);
    padding-left: var(--app-safe-left);
    background: #f4f7f3;
}

.mobile-tab-bar,
.mobile-menu-backdrop {
    display: none;
}

body.mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 720px) {
    body {
        background:
            radial-gradient(circle at 12% 0%, rgba(34, 197, 94, 0.08), transparent 30%),
            #f4f7f3;
    }

    .site-shell {
        width: 100%;
        padding: 10px 12px calc(112px + var(--app-safe-bottom));
    }

    .site-header {
        top: calc(8px + var(--app-safe-top));
        z-index: 28;
        min-height: 58px;
        padding: 9px 12px;
        margin-bottom: 14px;
        border-color: rgba(22, 101, 52, 0.1);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
    }

    .site-header .brand {
        width: auto;
        gap: 10px;
    }

    .site-header .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 13px;
        font-size: 0.78rem;
        box-shadow: 0 8px 20px rgba(22, 163, 74, 0.18);
    }

    .site-header .brand-copy strong {
        font-size: 0.86rem;
    }

    .site-header .brand-copy span {
        font-size: 0.7rem;
    }

    .site-nav {
        display: none !important;
    }

    .site-footer {
        display: none;
    }

    .dashboard-card,
    .catalog-shell,
    .mushaf-container,
    .community-shell,
    .settings-shell,
    .management-shell {
        padding: 18px;
        border-radius: 24px;
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
    }

    .dashboard-hero,
    .mushaf-header,
    .community-hero,
    .settings-hero,
    .management-hero {
        gap: 14px;
        padding-bottom: 18px;
        margin-bottom: 18px;
    }

    .main-title {
        gap: 10px;
        font-size: clamp(1.55rem, 8vw, 2.2rem);
    }

    .title-logo {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 0.78rem;
    }

    .hero-copy {
        margin-top: 10px;
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .home-calligraphy {
        display: none;
    }

    .home-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .home-card {
        padding: 20px;
        border-radius: 20px;
        box-shadow: none;
    }

    .home-dashboard {
        padding: 14px;
        border-radius: 22px;
    }

    .home-dashboard .dashboard-hero {
        gap: 6px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .home-dashboard .section-kicker {
        margin-bottom: 5px;
        font-size: 0.66rem;
        letter-spacing: 0.16em;
    }

    .home-dashboard .main-title {
        gap: 8px;
        font-size: clamp(1.3rem, 6vw, 1.65rem);
    }

    .home-dashboard .title-logo {
        width: 34px;
        height: 34px;
        border-radius: 11px;
        font-size: 0.65rem;
    }

    .home-dashboard .hero-copy {
        display: -webkit-box;
        margin-top: 6px;
        overflow: hidden;
        font-size: 0.74rem;
        line-height: 1.35;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .home-dashboard .home-overview-grid {
        gap: 10px;
    }

    .home-dashboard .home-card {
        gap: 7px;
        min-height: 118px;
        padding: 12px;
        border-radius: 16px;
    }

    .home-dashboard .home-card-label {
        font-size: 0.63rem;
        line-height: 1.35;
        letter-spacing: 0.09em;
    }

    .home-dashboard .home-progress-value {
        gap: 3px;
    }

    .home-dashboard .home-progress-value strong {
        font-size: 1.65rem;
    }

    .home-dashboard .home-progress-value span,
    .home-dashboard .home-daily-reading span,
    .home-dashboard .home-last-read-ayat {
        font-size: 0.68rem;
        line-height: 1.3;
    }

    .home-dashboard .home-progress-track {
        height: 6px;
        margin-top: auto;
    }

    .home-dashboard .home-daily-card {
        justify-content: flex-start;
    }

    .home-dashboard .home-daily-reading {
        gap: 4px;
    }

    .home-dashboard .home-daily-reading strong {
        font-size: 1.9rem;
    }

    .home-dashboard .home-last-read-card {
        display: grid;
        grid-template-areas:
            "label action"
            "surah action"
            "ayat action";
        grid-template-columns: minmax(0, 1fr) auto;
        grid-column: 1 / -1;
        column-gap: 12px;
        row-gap: 3px;
        min-height: 96px;
        align-items: center;
    }

    .home-dashboard .home-last-read-card .home-card-label {
        grid-area: label;
    }

    .home-dashboard .home-last-read-surah {
        grid-area: surah;
        font-size: 1.2rem;
        line-height: 1.1;
    }

    .home-dashboard .home-last-read-ayat {
        grid-area: ayat;
        margin: 0;
    }

    .home-dashboard .home-card-actions {
        grid-area: action;
        margin: 0;
    }

    .home-dashboard .home-card-actions .btn-compact {
        flex: 0 0 auto;
        width: auto;
        min-width: 0;
        min-height: 36px;
        padding: 7px 12px;
        border-radius: 10px;
        font-size: 0.72rem;
        white-space: nowrap;
        box-shadow: 0 7px 16px rgba(22, 163, 74, 0.15);
    }

    .page-prayer {
        padding-top: 0;
    }

    .page-prayer .prayer-shell {
        gap: 8px;
    }

    .page-prayer .prayer-hero {
        grid-template-columns: 1fr;
        gap: 8px;
        min-height: 0;
        padding: 12px;
        border-radius: 20px;
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    }

    .page-prayer .prayer-hero::before,
    .page-prayer .prayer-hero::after {
        display: none;
    }

    .page-prayer .prayer-intro > .section-kicker {
        margin-bottom: 3px;
        font-size: 0.6rem;
        letter-spacing: 0.15em;
    }

    .page-prayer .prayer-title {
        margin: 0;
        font-size: 1.35rem;
        line-height: 1.1;
        letter-spacing: -0.025em;
    }

    .page-prayer .prayer-lead {
        display: none;
    }

    .page-prayer .prayer-location-control {
        gap: 8px;
        min-height: 42px;
        margin-top: 8px;
        padding: 6px 9px;
        border-radius: 14px;
    }

    .page-prayer .prayer-location-mark {
        flex-basis: 28px;
        width: 28px;
        height: 28px;
    }

    .page-prayer .prayer-location-mark::before {
        inset: 7px;
        border-width: 3px;
    }

    .page-prayer .prayer-location-mark::after {
        top: 11px;
        left: 11px;
        width: 4px;
        height: 4px;
    }

    .page-prayer .prayer-location-copy small {
        font-size: 0.55rem;
        letter-spacing: 0.07em;
    }

    .page-prayer .prayer-location-copy strong {
        font-size: 0.72rem;
    }

    .page-prayer .prayer-intro .prayer-date-rail {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 7px;
        margin-top: 8px;
        padding: 8px 0 0;
    }

    .page-prayer .prayer-intro .prayer-date-label {
        font-size: 0.5rem;
        letter-spacing: 0.06em;
    }

    .page-prayer .prayer-intro .prayer-date-rail strong {
        font-size: 0.61rem;
        line-height: 1.25;
    }

    .page-prayer .prayer-intro .prayer-date-divider {
        height: 27px;
    }

    .page-prayer .prayer-next-card {
        width: 100%;
        min-height: 0;
        padding: 10px 12px;
        border-radius: 16px;
    }

    .page-prayer .prayer-next-topline {
        font-size: 0.55rem;
        letter-spacing: 0.07em;
    }

    .page-prayer .prayer-next-topline span:last-child {
        padding: 3px 6px;
    }

    .page-prayer .prayer-next-main {
        margin-top: 5px;
    }

    .page-prayer .prayer-next-main p {
        margin-bottom: 1px;
        font-size: 0.7rem;
    }

    .page-prayer .prayer-next-main strong {
        font-size: 1.7rem;
    }

    .page-prayer .prayer-next-index {
        font-size: 2.1rem;
    }

    .page-prayer .prayer-countdown {
        margin: 5px 0 4px;
        font-size: 0.58rem;
    }

    .page-prayer .prayer-countdown-track {
        height: 3px;
    }

    .page-prayer .prayer-schedule-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 4px;
    }

    .page-prayer .prayer-time-card,
    .page-prayer .prayer-time-card:last-child,
    .page-prayer .prayer-time-card.has-supporting-times {
        grid-column: auto;
        min-height: 72px;
        padding: 8px 3px;
        border-radius: 13px;
        text-align: center;
        transform: none;
    }

    .page-prayer .prayer-time-card::after,
    .page-prayer .prayer-time-card-top,
    .page-prayer .prayer-time-card > p,
    .page-prayer .prayer-time-details {
        display: none;
    }

    .page-prayer .prayer-time-card h2 {
        margin: 0;
        font-size: 0.61rem;
        line-height: 1.2;
    }

    .page-prayer .prayer-time-card time {
        position: static;
        display: block;
        margin-top: 6px;
        font-size: 0.84rem;
        line-height: 1;
        letter-spacing: -0.02em;
    }

    .page-prayer .prayer-time-card.is-loading span,
    .page-prayer .prayer-time-card.is-loading strong,
    .page-prayer .prayer-time-card.is-loading small {
        width: 76%;
        height: 6px;
        margin: 7px auto;
    }

    .page-prayer .prayer-status {
        gap: 8px;
        padding: 8px 10px;
        border-radius: 12px;
        font-size: 0.65rem;
    }

    .page-prayer .qibla-panel {
        grid-template-columns: minmax(0, 1fr) 82px;
        gap: 8px;
        min-height: 0;
        padding: 10px 12px;
        border-radius: 16px;
    }

    .page-prayer .qibla-panel::before,
    .page-prayer .qibla-copy .section-kicker,
    .page-prayer .qibla-copy > p:not(.qibla-compass-status),
    .page-prayer .qibla-compass-status {
        display: none;
    }

    .page-prayer .qibla-copy h2 {
        margin: 0;
        font-size: 0.88rem;
        letter-spacing: -0.01em;
    }

    .page-prayer .qibla-bearing-line {
        display: grid;
        gap: 0;
        margin-top: 3px;
    }

    .page-prayer .qibla-bearing-line strong {
        font-size: 1.15rem;
    }

    .page-prayer .qibla-bearing-line span {
        overflow: hidden;
        font-size: 0.5rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .page-prayer .qibla-compass-button {
        min-height: 27px;
        margin-top: 5px;
        padding: 5px 8px;
        font-size: 0.57rem;
    }

    .page-prayer .qibla-compass-wrap {
        grid-row: auto;
        gap: 3px;
    }

    .page-prayer .qibla-compass-face {
        width: 72px;
        box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.75), 0 10px 22px rgba(15, 78, 44, 0.1);
    }

    .page-prayer .qibla-compass-face.is-aligned {
        box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.75), 0 0 0 4px rgba(34, 197, 94, 0.1), 0 10px 22px rgba(15, 78, 44, 0.12);
    }

    .page-prayer .qibla-cardinal {
        width: 13px;
        height: 13px;
        font-size: 0.42rem;
    }

    .page-prayer .qibla-cardinal.is-north { top: 4px; }
    .page-prayer .qibla-cardinal.is-east { right: 4px; }
    .page-prayer .qibla-cardinal.is-south { bottom: 4px; }
    .page-prayer .qibla-cardinal.is-west { left: 4px; }

    .page-prayer .qibla-compass-ring {
        inset: 16px;
    }

    .page-prayer .qibla-pointer {
        width: 4px;
        height: 24px;
    }

    .page-prayer .qibla-pointer > span::before {
        top: -6px;
        border-right-width: 5px;
        border-bottom-width: 9px;
        border-left-width: 5px;
    }

    .page-prayer .qibla-compass-center {
        width: 12px;
        height: 12px;
        border-width: 3px;
    }

    .page-prayer .qibla-alignment-label {
        padding: 3px 6px;
        font-size: 0.47rem;
    }

    .page-prayer .prayer-source-note {
        display: none;
    }

    .catalog-shortcuts,
    .catalog-filter-end {
        display: none;
    }

    .catalog-toolbar {
        gap: 0;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .catalog-card,
    .community-panel,
    .settings-account-card {
        border-radius: 20px;
    }

    .mushaf-controls {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) repeat(2, 82px);
        gap: 9px;
        margin-bottom: 18px;
    }

    .mushaf-control-surah,
    .mushaf-control-ayat {
        min-width: 0;
    }

    .surah-select {
        min-height: 46px;
        padding-inline: 10px;
        border-radius: 13px;
        font-size: 0.86rem;
    }

    .ayah-block {
        gap: 13px;
        padding: 20px 0;
    }

    .ayah-arab {
        font-size: clamp(1.9rem, 8vw, 2.35rem);
        line-height: 2.05;
    }

    .auth-gate-card {
        padding: 8px;
        border-radius: 24px;
        background: #eef5ef;
    }

    .auth-gate-intro {
        min-height: 220px;
        padding: 26px 22px;
        border-radius: 18px 18px 7px 7px;
    }

    .auth-gate-calligraphy {
        width: 94px;
        opacity: 0.72;
    }

    .auth-gate-intro .hero-copy,
    .auth-gate-scope {
        display: none;
    }

    .auth-gate-panel {
        padding: 24px 18px;
        border-radius: 7px 7px 18px 18px;
    }

    body.is-login-screen .site-shell {
        min-height: calc(100dvh - var(--app-safe-top));
        padding-top: 8px;
        padding-bottom: max(8px, var(--app-safe-bottom));
    }

    body.is-login-screen .site-header {
        min-height: 54px;
        padding: 7px 10px;
        margin-bottom: 8px;
        border-radius: 18px;
    }

    body.is-login-screen .site-header .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    body.is-login-screen .auth-gate-card-login {
        gap: 6px;
        padding: 6px;
        border-radius: 22px;
    }

    body.is-login-screen .auth-gate-card-login .auth-gate-intro {
        min-height: 124px;
        padding: 14px 16px;
        gap: 5px;
        border-radius: 16px 16px 6px 6px;
    }

    body.is-login-screen .auth-gate-card-login .auth-gate-intro::before {
        top: -230px;
        right: -170px;
    }

    body.is-login-screen .auth-gate-card-login .auth-gate-calligraphy {
        top: 12px;
        right: 16px;
        width: 72px;
    }

    body.is-login-screen .auth-gate-card-login .auth-gate-intro .section-kicker {
        margin-bottom: 3px;
        font-size: 0.66rem;
        letter-spacing: 0.16em;
    }

    body.is-login-screen .auth-gate-card-login .auth-gate-title {
        max-width: calc(100% - 72px);
        font-size: clamp(1.5rem, 7vw, 1.9rem);
        line-height: 1.02;
    }

    body.is-login-screen .auth-gate-card-login .auth-gate-panel {
        gap: 8px;
        padding: 12px 14px 14px;
        border-radius: 6px 6px 16px 16px;
    }

    body.is-login-screen .auth-gate-card-login .auth-mode-tabs {
        padding: 2px;
    }

    body.is-login-screen .auth-gate-card-login .auth-mode-button {
        min-width: 78px;
        min-height: 32px;
        padding: 5px 12px;
        font-size: 0.78rem;
    }

    body.is-login-screen .auth-gate-card-login .auth-gate-panel-heading {
        gap: 3px;
    }

    body.is-login-screen .auth-gate-card-login .home-card-label {
        font-size: 0.68rem;
        letter-spacing: 0.12em;
    }

    body.is-login-screen .auth-gate-card-login .auth-gate-panel-heading .community-section-title {
        font-size: 1.4rem;
        line-height: 1.08;
    }

    body.is-login-screen .auth-gate-card-login .auth-gate-panel-heading > p:last-child {
        font-size: 0.75rem;
        line-height: 1.35;
    }

    body.is-login-screen .auth-gate-card-login .auth-gate-message {
        padding: 8px 10px;
        border-radius: 11px;
        font-size: 0.74rem;
        line-height: 1.35;
    }

    body.is-login-screen .auth-gate-card-login .auth-gate-form {
        gap: 8px;
    }

    body.is-login-screen .auth-gate-card-login .auth-gate-form .community-field {
        gap: 4px;
    }

    body.is-login-screen .auth-gate-card-login .auth-gate-form .community-field span {
        font-size: 0.78rem;
    }

    body.is-login-screen .auth-gate-card-login .auth-gate-form .community-input {
        min-height: 40px;
        padding: 8px 12px;
        border-radius: 11px;
        font-size: 0.84rem;
    }

    body.is-login-screen .auth-gate-card-login .auth-forgot-password {
        margin-top: -3px;
        font-size: 0.74rem;
    }

    body.is-login-screen .auth-gate-card-login .auth-gate-submit {
        min-width: 128px;
        min-height: 40px;
        padding: 8px 18px;
        border-radius: 11px;
        font-size: 0.82rem;
    }

    body.is-login-screen .auth-gate-card-login .auth-gate-switch {
        font-size: 0.76rem;
    }

    .mobile-tab-bar:not([hidden]) {
        position: fixed;
        right: calc(10px + var(--app-safe-right));
        bottom: calc(10px + var(--app-safe-bottom));
        left: calc(10px + var(--app-safe-left));
        z-index: 45;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 4px;
        min-height: 70px;
        padding: 7px;
        border: 1px solid rgba(22, 101, 52, 0.12);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(22px);
        box-shadow: 0 18px 46px rgba(15, 23, 42, 0.16);
    }

    .mobile-tab-button.nav-chip {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        min-width: 0;
        min-height: 56px;
        padding: 6px 3px;
        border: 0;
        border-radius: 17px;
        color: #718078;
        font-size: 0.68rem;
        font-weight: 700;
        background: transparent;
        box-shadow: none;
        transform: none;
    }

    .mobile-tab-button svg {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-tab-button.is-active {
        color: #126835;
        background: #e8f7ed;
        box-shadow: none;
        transform: none;
    }

    .mobile-menu-backdrop:not([hidden]) {
        position: fixed;
        inset: 0;
        z-index: 60;
        display: flex;
        align-items: flex-end;
        padding: 12px calc(12px + var(--app-safe-right)) calc(12px + var(--app-safe-bottom)) calc(12px + var(--app-safe-left));
        background: rgba(8, 24, 16, 0.38);
        opacity: 0;
        backdrop-filter: blur(3px);
        transition: opacity 0.18s ease;
    }

    .mobile-menu-backdrop.is-open {
        opacity: 1;
    }

    .mobile-menu-sheet {
        width: 100%;
        max-height: min(78dvh, 640px);
        overflow-y: auto;
        padding: 10px 18px 18px;
        border: 1px solid rgba(22, 101, 52, 0.1);
        border-radius: 28px;
        background: #fbfdfb;
        box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
        transform: translateY(24px);
        transition: transform 0.18s ease;
    }

    .mobile-menu-backdrop.is-open .mobile-menu-sheet {
        transform: translateY(0);
    }

    .mobile-menu-handle {
        width: 42px;
        height: 4px;
        margin: 2px auto 14px;
        border-radius: 99px;
        background: #d4ddd7;
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 14px;
    }

    .mobile-menu-header p,
    .mobile-menu-header h2 {
        margin: 0;
    }

    .mobile-menu-header p {
        color: #718078;
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .mobile-menu-header h2 {
        margin-top: 3px;
        font-family: 'Noto Serif', serif;
        font-size: 1.45rem;
    }

    .mobile-menu-close {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: #506059;
        font-size: 1.6rem;
        background: #eef3ef;
    }

    .mobile-menu-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .mobile-menu-action {
        display: flex;
        align-items: center;
        gap: 11px;
        min-width: 0;
        min-height: 86px;
        padding: 13px;
        border: 1px solid rgba(22, 101, 52, 0.09);
        border-radius: 19px;
        color: #1b2b22;
        text-align: left;
        background: #ffffff;
    }

    .mobile-menu-icon {
        flex: 0 0 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 13px;
        color: #13703a;
        font-family: 'Amiri', serif;
        font-size: 1.3rem;
        background: #e8f7ed;
    }

    .mobile-menu-icon svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-menu-action > span:last-child {
        min-width: 0;
        display: grid;
        gap: 3px;
    }

    .mobile-menu-action strong {
        font-size: 0.84rem;
    }

    .mobile-menu-action small {
        overflow: hidden;
        color: #7a8981;
        font-size: 0.67rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-menu-signout {
        width: 100%;
        min-height: 48px;
        margin-top: 12px;
        border: 1px solid rgba(185, 28, 28, 0.12);
        border-radius: 16px;
        color: #a52a20;
        font-weight: 750;
        background: #fff6f5;
    }

    #customPopup,
    #gmeetPopup {
        padding-top: calc(18px + var(--app-safe-top));
        padding-right: calc(18px + var(--app-safe-right));
        padding-bottom: calc(18px + var(--app-safe-bottom));
        padding-left: calc(18px + var(--app-safe-left));
    }

    body:has(input:focus, textarea:focus, select:focus) .mobile-tab-bar {
        display: none !important;
    }
}

@media (max-width: 720px) and (max-height: 720px) {
    body.is-login-screen .auth-gate-card-login .auth-gate-intro {
        min-height: 92px;
        padding-block: 10px;
    }

    body.is-login-screen .auth-gate-card-login .auth-gate-calligraphy {
        top: 8px;
        width: 56px;
    }

    body.is-login-screen .auth-gate-card-login .auth-gate-title {
        font-size: 1.35rem;
    }

    body.is-login-screen .auth-gate-card-login .auth-gate-panel-heading > p:last-child {
        display: none;
    }
}

@media (min-width: 721px) {
    .mobile-tab-bar,
    .mobile-menu-backdrop {
        display: none !important;
    }
}

@media (display-mode: standalone) {
    html:not(.is-native-app) body {
        padding-top: var(--app-safe-top);
        padding-right: var(--app-safe-right);
        padding-left: var(--app-safe-left);
    }
}
