/**
 * Custom styles for Checklist Fusion
 */

/* Password Reveal Button Styling */
.input-group .btn-outline-secondary {
    border-color: #ced4da;
    color: #6c757d;
    transition: all 0.2s ease-in-out;
}

.input-group .btn-outline-secondary:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
    color: #495057;
}

.input-group .btn-outline-secondary:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
    border-color: #6c757d;
}

.input-group .btn-outline-secondary:active {
    background-color: #e9ecef;
    border-color: #6c757d;
}

/* === GOOGLE PLACES AUTOCOMPLETE RESET === */
/* Reset all possible inherited styles that could interfere */
gmpx-place-picker *,
gmp-place-autocomplete *,
places-autocomplete-element *,
.google-places-autocomplete *,
#address-picker-container * {
    box-sizing: border-box !important;
}

/* Reset any inherited text or font styles */
gmpx-place-picker,
gmp-place-autocomplete,
places-autocomplete-element,
.google-places-autocomplete,
#address-picker-container > * {
    text-transform: none !important;
    letter-spacing: normal !important;
    word-spacing: normal !important;
    text-decoration: none !important;
    text-shadow: none !important;
}

/* Address Autocomplete Styling */
.pac-container {
    background-color: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.375rem;
    border: 1px solid #dee2e6;
    margin-top: 2px;
    z-index: 1050;
}

.pac-item {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #f8f9fa;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.pac-item:hover {
    background-color: #f8f9fa;
}

.pac-item:last-child {
    border-bottom: none;
}

.pac-item-selected {
    background-color: #e3f2fd;
}

/* Google PlaceAutocompleteElement styling to match form-control-lg exactly */
/* Override all inherited form styles including modern-design-system.css */
gmpx-place-picker,
gmp-place-autocomplete,
places-autocomplete-element,
.google-places-autocomplete,
#address-picker-container > *,
#address-picker-container gmp-place-autocomplete,
#address-picker-container places-autocomplete-element {
    display: block !important;
    width: 100% !important;
    padding: 0 !important; /* 🎯 NO padding on the container element */
    font-size: 1.25rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #212529 !important;
    background-color: #fff !important;
    background-image: none !important;
    border: 1px solid #ced4da !important; /* Normal border color */
    border-radius: 0.375rem !important;
    font-family: inherit !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
    min-height: calc(1.5em + 1rem + 2px) !important;
    max-height: calc(1.5em + 1rem + 2px) !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    vertical-align: baseline !important;
    
    /* Override modern-design-system.css .form-control styles */
    font-size: 1.25rem !important; /* Override 1rem from modern-design-system */
    min-height: calc(1.5em + 1rem + 2px) !important; /* Override 44px from modern-design-system */
    
    /* 🎯 NO padding on container - padding goes on internal input element only */
    
    /* 🎯 FIX: Force light mode - override color-scheme: light dark */
    color-scheme: light !important;
    
    /* 🎯 FIX: Override max-height: 100% that squashes the border */
    max-height: none !important;
    height: auto !important;
}

/* Override any Google-specific styling and inherited form styles */
.google-places-autocomplete input,
gmp-place-autocomplete input,
places-autocomplete-element input,
#address-picker-container input,
#address-picker-container gmp-place-autocomplete input,
#address-picker-container places-autocomplete-element input {
    padding: 0.5rem 1rem !important;
    font-size: 1.25rem !important;
    line-height: 1.5 !important;
    border: none !important;
    background: transparent !important;
    outline: none !important;
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    
    /* Override modern-design-system.css .form-control styles */
    font-size: 1.25rem !important; /* Override 1rem from modern-design-system */
    padding: 0.5rem 1rem !important; /* Override 0.75rem from modern-design-system */
    min-height: auto !important; /* Override 44px from modern-design-system */
    
    /* 🎯 FIX: Force light mode for input elements too */
    color-scheme: light !important;
    color: #212529 !important;
}

gmpx-place-picker:focus,
gmp-place-autocomplete:focus,
places-autocomplete-element:focus,
.google-places-autocomplete:focus {
    border-color: #0d6efd !important; /* 🎯 Darker blue on focus */
    outline: 0 !important;
    box-shadow: 0 0 0 0.35rem rgba(13, 110, 253, 0.4) !important; /* 🎯 Stronger focus shadow */
}

gmpx-place-picker:disabled,
gmp-place-autocomplete:disabled,
places-autocomplete-element:disabled,
.google-places-autocomplete:disabled,
#address-picker-container > *:disabled {
    background-color: #e9ecef !important;
    opacity: 1 !important;
}

/* Prevent inheritance from Bootstrap .form-control and modern-design-system.css */
/* Use very specific selectors to override any inherited styles */
#address-picker-container.form-group > *,
#address-picker-container.form-group gmp-place-autocomplete,
#address-picker-container.form-group places-autocomplete-element,
.form-group #address-picker-container > *,
.form-group #address-picker-container gmp-place-autocomplete,
.form-group #address-picker-container places-autocomplete-element {
    font-size: 1.25rem !important;
    padding: 0 !important; /* 🎯 NO padding on the container element */
    min-height: calc(1.5em + 1rem + 2px) !important;
    border: 1px solid #ced4da !important; /* Normal border color */
    border-radius: 0.375rem !important;
    background-color: #fff !important;
}

/* Prevent any accidental form-control class application */
.form-control.google-places-autocomplete,
.form-control gmp-place-autocomplete,
.form-control places-autocomplete-element {
    font-size: 1.25rem !important;
    padding: 0.5rem 1rem !important;
    min-height: calc(1.5em + 1rem + 2px) !important;
}

/* === ULTIMATE OVERRIDE FOR GOOGLE PLACES AUTOCOMPLETE === */
/* This ensures NO inherited styles can interfere with our autocomplete */
.mb-4 #address-picker-container > *,
.mb-4 gmp-place-autocomplete,
.mb-4 places-autocomplete-element,
div[class*="mb-"] #address-picker-container > *,
div[class*="mb-"] gmp-place-autocomplete,
div[class*="mb-"] places-autocomplete-element {
    font-size: 1.25rem !important;
    padding: 0 !important; /* 🎯 NO padding on the container element */
    min-height: calc(1.5em + 1rem + 2px) !important;
    border: 1px solid #ced4da !important; /* Normal border color */
    border-radius: 0.375rem !important;
    background-color: #fff !important;
    color: #212529 !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    
    /* 🎯 FIX: Force light mode - override color-scheme: light dark */
    color-scheme: light !important;
    
    /* 🎯 FIX: Override max-height: 100% that squashes the border */
    max-height: none !important;
    height: auto !important;
}

/* Reset any Bootstrap .form-control-lg inheritance issues */
*:not(.form-control) > gmp-place-autocomplete,
*:not(.form-control) > places-autocomplete-element,
*:not(.form-control) > .google-places-autocomplete {
    font-size: 1.25rem !important;
    padding: 0.5rem 1rem !important;
    min-height: calc(1.5em + 1rem + 2px) !important;
}

/* Handle Google's internal styling that might override our styles */
gmp-place-autocomplete::part(input),
places-autocomplete-element::part(input) {
    font-size: 1.25rem !important;
    padding: 0.5rem 1rem !important;
    border: 1px solid #ced4da !important; /* Normal border color */
    border-radius: 0.375rem !important;
    background-color: #fff !important;
    color-scheme: light !important;
}

/* 🎯 TARGET THE EXACT ELEMENT: <gmp-place-autocomplete class="google-places-autocomplete"> */
gmp-place-autocomplete.google-places-autocomplete {
    color-scheme: light !important;
    background-color: #fff !important;
    color: #212529 !important;
    border: 1px solid #ced4da !important; /* Normal border color */
    padding: 0 !important; /* 🎯 NO padding on the container element */
}

/* Also target any nested elements that might inherit the dark color scheme */
gmp-place-autocomplete.google-places-autocomplete *,
places-autocomplete-element.google-places-autocomplete *,
gmp-place-autocomplete *,
places-autocomplete-element * {
    color-scheme: light !important;
    background-color: inherit !important;
    color: inherit !important;
}

/* Force light mode on any Google internal components */
[data-gmp-internal] {
    color-scheme: light !important;
}

/* 🎯 CRITICAL: Override any Google max-height that squashes borders */
gmp-place-autocomplete,
places-autocomplete-element,
.google-places-autocomplete,
gmp-place-autocomplete *,  
places-autocomplete-element *,
.google-places-autocomplete * {
    max-height: none !important;
    height: auto !important;
    min-height: auto !important;
}

/* 🎯 CRITICAL: Remove padding from Google Places container elements */
gmp-place-autocomplete,
places-autocomplete-element,
.google-places-autocomplete {
    padding: 0 !important; /* Container should have NO padding */
}

/* 🎯 ENSURE: Input elements inside have proper padding */
gmp-place-autocomplete input,
places-autocomplete-element input,
.google-places-autocomplete input {
    padding: 0.5rem 1rem !important; /* Internal input should have padding */
}

/*
 EXPLANATION: Google Places Autocomplete CSS Override Strategy
 
 The Google Places Autocomplete element can inherit unwanted styles from:
 1. Bootstrap's .form-control classes
 2. Our modern-design-system.css .form-control styles (1rem font-size, 0.75rem padding, 44px min-height)
 3. Global input styling
 4. Parent container styling
 5. 🎯 CRITICAL: color-scheme: light dark (causes dark mode with black background, white text)
 
 This CSS uses multiple layers of specificity to ensure our desired styling (matching .form-control-lg):
 - font-size: 1.25rem (not 1rem from modern-design-system)
 - padding: 0 on container, 0.5rem 1rem on internal input (container padding causes rendering issues)
 - min-height: calc(1.5em + 1rem + 2px) (not 44px from modern-design-system)
 - color-scheme: light (forces light mode, prevents dark mode adaptation)
 
 All rules use !important to override any inherited styles.
*/

/* Google Places dropdown styling (for the new API) */
.gm-style .gm-style-iw-c,
.gm-style-iw,
gmp-autocomplete-dropdown,
.places-autocomplete-dropdown {
    background-color: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.375rem;
    border: 1px solid #dee2e6;
    margin-top: 2px;
    z-index: 1050;
}

/* Individual dropdown items */
.gm-style .place-result,
gmp-autocomplete-item,
.places-autocomplete-item {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #f8f9fa;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.gm-style .place-result:hover,
gmp-autocomplete-item:hover,
.places-autocomplete-item:hover {
    background-color: #f8f9fa;
}

.gm-style .place-result:last-child,
gmp-autocomplete-item:last-child,
.places-autocomplete-item:last-child {
    border-bottom: none;
}

/* Auto-filled field styling */
.border-success {
    border-color: #28a745 !important;
    animation: successPulse 0.5s ease-in-out;
}

@keyframes successPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Logo styling */
.navbar-brand img {
    max-height: 70px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.logo-large {
    max-height: 160px;
    margin-bottom: 1.5rem;
}

.footer-logo {
    max-height: 70px;
    margin-bottom: 0.5rem;
}

/* Add space below the logo in the login/register pages */
.auth-logo-container {
    margin-bottom: 2rem;
}

/* Hero section styling */
.jumbotron {
    border-radius: 0;
    margin-bottom: 0;
    padding: 4rem 0;
}

.hero-logo {
    max-height: 400px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Snapshot Views Styling */
.page-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0;
}

.snapshot-info-card {
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-left: 4px solid #2196f3;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.card-header {
    border-bottom: 1px solid #e9ecef;
    border-radius: 12px 12px 0 0 !important;
    padding: 1.5rem;
}

.card-header.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.card-body {
    padding: 1.5rem;
}

.badge {
    font-size: 0.875em;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-weight: 500;
}

.badge-success {
    background-color: #28a745;
}

.badge-warning {
    background-color: #ffc107;
    color: #212529;
}

.badge-secondary {
    background-color: #6c757d;
}

.badge-info {
    background-color: #17a2b8;
}

.table-hover tbody tr:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.table-light {
    background-color: #f8f9fa;
}

.table-dark {
    background-color: #343a40;
}

.table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    padding: 1rem;
    border-bottom: 2px solid #dee2e6;
}

.table td {
    padding: 1rem;
    vertical-align: middle;
}

.fw-medium, .font-weight-medium {
    font-weight: 500;
}

.btn-group .btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.btn-group .btn:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-group .btn:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
   /* color: white; */
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.3);
}

.alert {
    border: none;
    border-radius: 8px;
    padding: 1.5rem;
}

.alert-info {
    background-color: #e3f2fd;
    color: #0277bd;
    border-left: 4px solid #2196f3;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
}

.text-primary {
    color: #007bff !important;
}

.text-success {
    color: #28a745 !important;
}

.text-secondary {
    color: #6c757d !important;
}

.text-muted {
    color: #6c757d !important;
}

/* Bootstrap 4 compatible margin utilities */
.me-1, .mr-1 {
margin-right: 0.5rem;
}

.me-2, .mr-2 {
margin-right: 0.75rem;
}

/* Extra spacing for icons in headings */
h1 i.fa, h1 i.fas, h1 i.far, h1 i.fab,
h2 i.fa, h2 i.fas, h2 i.far, h2 i.fab,
h3 i.fa, h3 i.fas, h3 i.far, h3 i.fab,
h4 i.fa, h4 i.fas, h4 i.far, h4 i.fab,
h5 i.fa, h5 i.fas, h5 i.far, h5 i.fab,
h6 i.fa, h6 i.fas, h6 i.far, h6 i.fab {
    margin-right: 0.75rem !important;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.my-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Icon styling */
.fas {
    width: 1rem;
    text-align: center;
}

/* Additional styling for responsiveness */
@media (max-width: 768px) {
    .logo-large {
        max-height: 130px;
    }
    
    .hero-logo {
        max-height: 260px;
    }
    
    /* Improve spacing on small devices */
    .py-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    /* Reduce padding in navbar for smaller screens */
    .navbar-brand {
        font-size: 1.1rem;
        padding: 0.25rem 0;
    }
    
    /* Improve table display on small screens */
    .table-responsive {
        border: 0;
    }
    
    /* Make cards flush with edges on mobile */
    .card {
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }
    
    /* Adjust card margins and padding */
    .card-body {
        padding: 0.75rem;
    }
    
    .mb-4 {
        margin-bottom: 0.75rem !important;
    }
    
    /* Adjust table styles for mobile view */
    .table {
    margin-bottom: 0;
}

.table {
    margin-bottom: 0;
}
    
    .table td, .table th {
        padding: 0.5rem;
    }
    
    /* Remove inner containers on mobile */
    .container-fluid .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Make sure tables use full width */
    .table-responsive .table {
        width: 100% !important;
    }
    
    /* Special styling for list view container */
    .list-view-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Reduce font sizes on mobile */
    body {
        font-size: 0.9rem;
    }
    
    h1, .h1 {
        font-size: 1.8rem;
    }
    
    h2, .h2 {
        font-size: 1.6rem;
    }
    
    h3, .h3 {
        font-size: 1.4rem;
    }
    
    h4, .h4 {
        font-size: 1.2rem;
    }
    
    h5, .h5 {
        font-size: 1.1rem;
    }
    
    h6, .h6 {
        font-size: 1rem;
    }
    
    .card-header h5, .card-header .h5 {
        font-size: 1rem;
    }
    
    .table {
        font-size: 0.85rem;
    }
    
    /* Snapshot-specific mobile styles */
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-group .btn {
        border-radius: 8px !important;
        margin-bottom: 0.5rem;
    }
    
    .btn-group .btn:last-child {
        margin-bottom: 0;
    }
    
    .page-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .card-header {
        padding: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .table th,
    .table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .btn-sm {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Extra small device optimizations */
@media (max-width: 576px) {
    /* Further reduce padding */
    .py-4 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }
    
    /* Adjust form elements on small screens */
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    /* Optimize buttons on small screens */
    .btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Adjust card header padding */
    .card-header {
        padding: 0.5rem 0.75rem;
    }
    
    /* Make tables full width and borderless on mobile */
    .table-bordered, .table-bordered td, .table-bordered th {
        border: 0;
    }
    
    .table-bordered {
        border-bottom: 1px solid #dee2e6;
    }
    
    /* Specific fix for users table */
    #users-table, #users-table th, #users-table td {
        border: 0 !important;
    }
    
    /* Hide DataTables borders */
    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter,
    .dataTables_wrapper .dataTables_info,
    .dataTables_wrapper .dataTables_processing,
    .dataTables_wrapper .dataTables_paginate {
        border: 0 !important;
        padding: 0.5rem !important;
    }
    
    /* Adjust spacing for action buttons */
    .btn-group-sm > .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }
    
    /* Remove additional nested containers padding */
    .container-fluid {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    /* Remove shadow from cards */
    .card.shadow {
        box-shadow: none !important;
    }
    
    /* Special styling for list view pages */
    .list-view-container .card {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        width: calc(100% + 1rem);
    }
    
    /* Keep alert messages properly padded */
    .list-view-container .alert {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    
    /* Remove extra container borders on users page */
    .list-view-container > .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        width: calc(100% + 1rem);
    }
    
    /* Fix for nested containers in list views */
    .list-view-container > .container-fluid > .card {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    /* Further reduce font sizes for extra small devices */
    body {
        font-size: 0.85rem;
    }
    
    .table {
        font-size: 0.8rem;
    }
    
    .badge {
        font-size: 75%;
    }
    
    .small, small {
        font-size: 80%;
    }
    
    /* Snapshot-specific extra small device styles */
    .table-responsive {
        font-size: 0.875rem;
    }
    
    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 1rem;
    }
    
    .d-flex.justify-content-between .btn {
        width: 100%;
    }
} 

/* Subscription notice in navigation */
.navbar-text.subscription-notice {
    background: rgba(255, 193, 7, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
    max-width: 300px;
}

.navbar-text.subscription-notice small {
    font-weight: 500;
}

/* Manage subscription button in navbar */
.nav-link.btn.btn-warning {
    border-radius: 0.25rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-link.btn.btn-warning:hover {
    background-color: #e0a800 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Login form mobile responsiveness - override Bootstrap align-items-center */
@media (max-width: 768px) {
    .login-page #password-label-container {
        flex-direction: column !important;
        gap: 0.5rem;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .login-page #password-label-container a {
        align-self: flex-end;
        margin-top: 0.25rem;
    }
}

@media (max-width: 576px) {
    .login-page #password-label-container {
        flex-direction: column !important;
        gap: 0.5rem;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .login-page #password-label-container a {
        align-self: flex-end;
        margin-top: 0.25rem;
    }
}

/* Responsive adjustments for subscription notice */
@media (max-width: 991.98px) {
    .navbar-text.subscription-notice {
        margin: 0.5rem 0;
        text-align: center;
        max-width: none;
    }
} 