/* Base reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

/* Light theme with green accents */
:root {
    --bg-base: #f8fafc;
    --bg-card: #ffffff;
    --bg-elevated: #f1f5f9;
    --bg-hover: #e2e8f0;

    --border: #e2e8f0;
    --border-subtle: #f1f5f9;

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;

    --green-accent: #16a34a;
    --green-muted: #15803d;
    --green-subtle: rgba(22, 163, 74, 0.08);
    --green-glow: rgba(22, 163, 74, 0.15);

    --radius: 8px;
    --radius-sm: 4px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
    background: var(--bg-base);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.5;
}

/* Header */
header {
    background: var(--bg-card);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

header h1 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 2px;
}

/* Elevation Profile Panel */
.elevation-panel {
    background: var(--bg-card);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    height: 220px;
    min-height: 220px;
}

.elevation-panel canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Filters */
.filters {
    background: var(--bg-card);
    padding: 0.625rem 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.filter-label {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.8125rem;
}

.filters label {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    cursor: pointer;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    transition: color 0.15s;
}

.filters label:hover {
    color: var(--text-primary);
}

.filters input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--green-accent);
    cursor: pointer;
}

/* Main container */
.container {
    display: flex;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

/* Panels */
.panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    overflow: hidden;
    min-height: 0;
}

.panel h2 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.panel h2 span {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.75rem;
}

.waypoints-panel {
    border-right: 1px solid var(--border);
}

.route-panel .table-wrapper {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.table-wrapper {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

thead {
    position: sticky;
    top: 0;
    background: var(--bg-elevated);
    z-index: 1;
}

th {
    text-align: left;
    padding: 0.625rem 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    border-bottom: 1px solid var(--border);
}

td {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

tr {
    transition: background 0.1s;
}

tr:hover {
    background: var(--bg-elevated);
}

tr:last-child td {
    border-bottom: none;
}

tr.selected {
    background: var(--green-subtle);
}

tr.selected td {
    color: var(--text-primary);
}

tr.selected:hover {
    background: var(--green-glow);
}

tr.highlight {
    background: var(--green-glow);
    animation: highlight-pulse 0.4s ease-in-out 2;
}

@keyframes highlight-pulse {
    0%, 100% { background: var(--green-glow); }
    50% { background: rgba(34, 197, 94, 0.3); }
}

/* Clickable rows */
#route-table tbody tr,
#waypoints-table tbody tr {
    cursor: pointer;
}

/* Buttons */
.btn-add, .btn-remove {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    transition: all 0.15s;
}

.btn-add:hover {
    background: var(--green-accent);
    border-color: var(--green-accent);
    color: #fff;
}

.btn-add:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-add:disabled:hover {
    background: transparent;
    border-color: var(--border);
    color: var(--text-secondary);
}

.btn-remove {
    color: var(--text-muted);
}

.btn-remove:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.badge-hut { background: rgba(22, 163, 74, 0.1); color: #15803d; }
.badge-shelter { background: rgba(202, 138, 4, 0.1); color: #a16207; }
.badge-village { background: rgba(37, 99, 235, 0.1); color: #1d4ed8; }
.badge-town { background: rgba(147, 51, 234, 0.1); color: #7c3aed; }
.badge-resort { background: rgba(219, 39, 119, 0.1); color: #be185d; }
.badge-finish { background: rgba(22, 163, 74, 0.15); color: #16a34a; }

/* Difficulty indicators */
.diff-easy { color: #16a34a; }
.diff-moderate { color: #ca8a04; }
.diff-hard { color: #dc2626; }

/* Route footer */
.route-footer {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.75rem;
    flex-shrink: 0;
}

/* Route totals */
.route-totals {
    background: var(--bg-card);
    padding: 0.625rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-size: 0.8125rem;
    flex: 1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.route-totals .total-item {
    display: inline-block;
    margin-right: 1.5rem;
}

.route-totals .total-label {
    color: var(--text-muted);
}

.route-totals .total-value {
    color: var(--green-accent);
    font-weight: 600;
}

/* Clear button */
.btn-clear {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: #dc2626;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 500;
    flex-shrink: 0;
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.btn-clear::before {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23dc2626' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.15s;
}

.btn-clear:hover {
    background: var(--bg-elevated);
    border-color: var(--bg-hover);
}

/* Warnings */
.warnings {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 0.625rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.8125rem;
    min-height: 2.5rem;
}

.warnings:empty {
    display: none;
}

.warning-item {
    margin: 0.25rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-right: 1.5rem;
    padding: 0.25rem 0.625rem;
    background: rgba(202, 138, 4, 0.1);
    border-radius: var(--radius-sm);
    color: #a16207;
}

.warning-item::before {
    content: '!';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: rgba(202, 138, 4, 0.15);
    border-radius: 50%;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #ca8a04;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Empty state */
.empty-state {
    color: var(--text-muted);
    text-align: center;
    padding: 2rem;
    font-style: normal;
}

/* ============ Share FAB ============ */
.share-fab {
    position: fixed;
    bottom: 5rem;
    right: 1rem;
    padding: 0.75rem 1.25rem;
    background: var(--green-accent);
    border: none;
    border-radius: var(--radius);
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    z-index: 100;
    display: none;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
    transition: all 0.2s ease;
}

.share-fab:hover {
    background: var(--green-muted);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.4);
}

.share-fab.visible {
    display: block;
}

.share-fab.copied {
    background: #0f172a;
}

/* Distance tooltip */
tr[data-dist] {
    position: relative;
}

tr[data-dist]:hover::after {
    content: attr(data-dist);
    position: absolute;
    left: 50%;
    top: -2rem;
    transform: translateX(-50%);
    background: #0f172a;
    color: #f1f5f9;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    white-space: nowrap;
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
}

/* ============ Segment Preview Modal ============ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal[hidden] {
    display: none;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(2px);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 90%;
    max-width: none;
    height: 90vh;
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.modal-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    line-height: 1;
    transition: color 0.15s;
}

.modal-close:hover {
    color: var(--text-primary);
}

/* Segment stats in modal */
.segment-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.segment-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.segment-stats .stat-label {
    color: var(--text-muted);
}

.segment-stats .stat-value {
    font-weight: 600;
    color: var(--text-primary);
}

.segment-stats .stat-gain { color: #dc2626; }
.segment-stats .stat-loss { color: #2563eb; }

/* Chart wrapper - fixed height */
.segment-chart-wrapper {
    height: 30vh;
    flex-shrink: 0;
    margin-bottom: 1rem;
    background: var(--bg-elevated);
    border-radius: var(--radius);
    padding: 0.75rem;
    position: relative;
}

.segment-chart-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Segment details layout */
.poi-lists {
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.segment-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 100%;
}

@media (max-width: 800px) {
    .segment-details {
        grid-template-columns: 1fr;
    }
}

.segments-section,
.pois-section {
    background: var(--bg-elevated);
    border-radius: var(--radius);
    padding: 0.75rem;
    overflow-y: auto;
    min-height: 0;
}

.segments-section h4,
.pois-section h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.segments-table,
.pois-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

.segments-table th,
.pois-table th {
    text-align: left;
    padding: 0.375rem 0.5rem;
    font-size: 0.6875rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.segments-table td,
.pois-table td {
    padding: 0.375rem 0.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.segments-table tr,
.pois-table tr {
    cursor: pointer;
    transition: background 0.1s;
}

.segments-table tbody tr:hover,
.pois-table tbody tr:hover {
    background: var(--bg-hover);
}

/* Segment type styling */
.seg-ascent-icon { color: #dc2626; font-weight: bold; }
.seg-descent-icon { color: #2563eb; font-weight: bold; }

.seg-ascent-val { color: #dc2626; }
.seg-descent-val { color: #2563eb; }

/* Dim the secondary value (descent in ascent rows, ascent in descent rows) */
.seg-ascent .seg-descent-val { opacity: 0.5; }
.seg-descent .seg-ascent-val { opacity: 0.5; }

/* POI type styling */
.poi-hut td:first-child { color: #16a34a; }
.poi-water td:first-child { color: #3b82f6; }
.poi-village td:first-child { color: #8b5cf6; }
.poi-pass td:first-child { color: #f97316; }
.poi-peak td:first-child { color: #ef4444; }

/* Highlighted row when clicked - stays until cleared */
.segments-table tr.highlighted,
.pois-table tr.highlighted {
    background: rgba(245, 158, 11, 0.25);
}

/* Water status indicators */
.water-status {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.375rem;
}

.water-status.ok { background: #16a34a; }
.water-status.seasonal { background: #ca8a04; }
.water-status.weak { background: #f97316; }
.water-status.dry { background: #dc2626; }

/* ============ Responsive Table Columns ============ */
.mobile-stats {
    display: none; /* Hidden on desktop */
}

.desktop-only {
    display: table-cell; /* Visible on desktop */
}

/* ============ Mobile Edge Tabs ============ */
.edge-tab {
    display: none; /* Hidden on desktop */
}

/* ============ iOS & Touch Fixes ============ */
html {
    -webkit-text-size-adjust: 100%;
}

/* ============ Mobile Styles (< 768px) ============ */
@media (max-width: 768px) {
    /* Enable page scrolling */
    html, body {
        height: auto;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    body {
        overflow-x: hidden;
    }

    /* Header compact */
    header {
        padding: 0.75rem 1rem;
    }

    header h1 {
        font-size: 1rem;
    }

    .subtitle {
        font-size: 0.6875rem;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
    }

    /* Hide elevation chart on mobile */
    .elevation-panel {
        display: none;
    }

    /* Container becomes vertical, no overflow hidden */
    .container {
        flex-direction: column;
        overflow: visible;
        position: relative;
    }

    /* Drawer container for sliding panels */
    .drawer-container {
        min-height: calc(100vh - 120px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
        min-height: calc(100dvh - 120px);
    }

    /* Panels stack vertically, waypoints shown by default */
    .panel {
        padding: 0.75rem;
        border: none;
        overflow: visible;
    }

    .waypoints-panel {
        display: block;
        border-right: none;
    }

    .route-panel {
        display: none;
    }

    /* When route drawer is open */
    .drawer-container.route-open .waypoints-panel {
        display: none;
    }

    .drawer-container.route-open .route-panel {
        display: flex;
    }

    /* Filters inside waypoints panel */
    .filters {
        padding: 0.5rem 0;
        margin-bottom: 0.5rem;
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
        border-bottom: 1px solid var(--border);
        background: transparent;
    }

    .filter-label {
        width: 100%;
        margin-bottom: 0.25rem;
    }

    .filters label {
        font-size: 0.875rem;
    }

    .filters input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }

    /* Table wrapper adjustments */
    .table-wrapper {
        border-radius: 0;
        border-left: none;
        border-right: none;
        box-shadow: none;
    }

    /* Larger touch targets */
    td, th {
        padding: 0.75rem 0.5rem;
    }

    tr {
        min-height: 48px;
    }

    /* Route table: hide desktop columns, show mobile stats */
    .desktop-only {
        display: none !important;
    }

    .mobile-stats {
        display: table-cell !important;
    }

    /* Waypoints table: hide Type column */
    #waypoints-table th:nth-child(4),
    #waypoints-table td:nth-child(4) {
        display: none;
    }

    /* Smaller font for tables */
    table {
        font-size: 0.8125rem;
    }

    th {
        font-size: 0.6875rem;
    }

    /* Route footer */
    .route-footer {
        flex-direction: column;
        gap: 0.5rem;
    }

    .route-totals {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .route-totals .total-item {
        margin-right: 1rem;
    }

    .btn-clear {
        width: 100%;
    }

    /* Warnings footer */
    .warnings {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    /* Edge tabs - side pull handles */
    .edge-tab {
        display: flex;
        position: fixed;
        top: 50%;
        writing-mode: vertical-rl;
        transform: translateY(-50%);
        background: var(--green-accent);
        color: #fff;
        padding: 0.75rem 0.5rem;
        align-items: center;
        gap: 0.375rem;
        font-weight: 600;
        font-size: 0.8125rem;
        cursor: pointer;
        z-index: 100;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .edge-tab:active {
        background: var(--green-muted);
    }

    .edge-tab-left {
        left: 0;
        border-radius: 0 var(--radius) var(--radius) 0;
        transform: translateY(-50%) translateX(-100%);
        opacity: 0;
        pointer-events: none;
    }

    .edge-tab-right {
        right: 0;
        border-radius: var(--radius) 0 0 var(--radius);
        text-orientation: mixed;
        transform: translateY(-50%) translateX(0);
    }

    /* Show left tab when viewing route */
    .drawer-container.route-open ~ .edge-tab-left {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* Hide right tab when viewing route */
    .drawer-container.route-open ~ .edge-tab-right {
        transform: translateY(-50%) translateX(100%);
        opacity: 0;
        pointer-events: none;
    }

    .edge-tab-text {
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .edge-tab-count {
        background: rgba(255, 255, 255, 0.25);
        padding: 0.25rem 0.375rem;
        border-radius: 4px;
        font-size: 0.6875rem;
        min-width: 1.25rem;
        text-align: center;
    }

    .edge-tab-count:empty {
        display: none;
    }

    /* Bounce animation for route tab */
    @keyframes edge-tab-bounce {
        0%, 100% { transform: translateY(-50%) translateX(0); }
        15% { transform: translateY(-50%) translateX(-8px); }
        30% { transform: translateY(-50%) translateX(0); }
        45% { transform: translateY(-50%) translateX(-5px); }
        60% { transform: translateY(-50%) translateX(0); }
        75% { transform: translateY(-50%) translateX(-2px); }
    }

    .edge-tab-right.bounce {
        animation: edge-tab-bounce 0.5s ease-out;
    }

    /* Flying distance badge */
    .flying-badge {
        position: fixed;
        background: var(--green-accent);
        color: #fff;
        padding: 0.375rem 0.625rem;
        border-radius: 9999px;
        font-size: 0.75rem;
        font-weight: 600;
        white-space: nowrap;
        z-index: 200;
        pointer-events: none;
        box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
        transition: all 2s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .flying-badge.fly {
        opacity: 0;
        transform: scale(0.5);
    }

    /* Distance tooltip - position below on mobile */
    tr[data-dist]:hover::after {
        top: auto;
        bottom: -2rem;
    }

    /* Share FAB - position above warnings footer */
    .share-fab {
        bottom: 4rem;
    }

    /* Modal on mobile */
    .modal-content {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        max-height: 100dvh;
        border-radius: 0;
        padding: 1rem;
        padding-top: calc(1rem + env(safe-area-inset-top));
    }

    .modal-header h3 {
        font-size: 0.9375rem;
    }

    .modal-close {
        font-size: 1.75rem;
        padding: 0.5rem;
    }

    .segment-stats {
        gap: 0.75rem;
        font-size: 0.8125rem;
    }

    .segment-chart-wrapper {
        height: 25vh;
    }

    .segment-details {
        grid-template-columns: 1fr;
    }

    .segments-section,
    .pois-section {
        max-height: 40vh;
    }

    /* Scrollbar hide on mobile */
    ::-webkit-scrollbar {
        width: 4px;
    }
}

/* ============ Small Phone (< 480px) ============ */
@media (max-width: 480px) {
    header h1 {
        font-size: 0.9375rem;
    }

    .subtitle {
        font-size: 0.625rem;
    }

    .filters label {
        font-size: 0.8125rem;
    }

    table {
        font-size: 0.75rem;
    }

    td, th {
        padding: 0.625rem 0.375rem;
    }

    .badge {
        font-size: 0.5625rem;
        padding: 0.0625rem 0.375rem;
    }

    .edge-tab {
        font-size: 0.75rem;
        padding: 0.625rem 0.375rem;
    }
}
