/* Modern Design System - Inspired by HandicapMaster */

:root {
    /* Primary Colors - Golf Green Theme */
    --primary-color: #2d5016;
    --primary-dark: #1f350f;
    --primary-light: #3d6a1f;
    --primary-bright: #4a7c26;
    
    /* Secondary Colors - Light Green */
    --secondary-color: #6b8e3f;
    --secondary-light: #8fb85a;
    --accent-color: #5a8a2e;
    
    /* Green Shades for Navigation */
    --nav-green-light: #a8c97a;
    --nav-green-dark: #2d5016;
    
    /* Neutral Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    
    /* Border & Shadow */
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 200ms ease-in-out;
    --transition-slow: 300ms ease-in-out;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Modern Card Styles */
.modern-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: var(--spacing-lg);
    transition: all var(--transition-base);
}

.modern-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.modern-card-header {
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
    background: transparent;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modern-card-body {
    padding: var(--spacing-lg);
}

.modern-card-footer {
    padding: var(--spacing-md) var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    background: transparent;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

/* Modern Button Styles */
.btn-modern {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: var(--font-size-sm);
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-modern-primary {
    background: var(--primary-color);
    color: white;
}

.btn-modern-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-modern-secondary {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-modern-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-modern-success {
    background: var(--accent-color);
    color: white;
}

.btn-modern-success:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    font-weight: 400;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    line-height: 1.6;
}

/* Statistics Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
}

.stat-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.stat-value {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.stat-change.positive {
    color: var(--accent-color);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-change {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-top: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stat-change.negative {
    color: #ef4444;
}

/* Modern Table Styles */
.modern-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.modern-table thead {
    background: var(--bg-secondary);
}

.modern-table thead th {
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: left;
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--border-color);
}

.modern-table tbody tr {
    transition: background-color var(--transition-fast);
}

.modern-table tbody tr:hover {
    background: var(--bg-secondary);
}

.modern-table tbody td {
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.modern-table tbody tr:last-child td {
    border-bottom: none;
}

/* Modern Form Styles */
.form-modern {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.form-modern .form-group {
    margin-bottom: var(--spacing-lg);
}

.form-modern label {
    display: block;
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.form-modern .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: var(--font-size-base);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.form-modern .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Modern Navigation */
.navbar-modern {
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md) 0;
}

.navbar-modern .navbar-brand {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-modern .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-decoration: none;
}

.navbar-modern .nav-link:hover {
    color: var(--primary-color);
    background: var(--bg-secondary);
}

.navbar-modern .nav-link.active {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

/* Feature Section */
.feature-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-xl);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-2xl);
}

.feature-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Badge Styles */
.badge-modern {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: var(--font-size-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-modern-primary {
    background: rgba(45, 80, 22, 0.1);
    color: var(--primary-color);
}

.badge-modern-success {
    background: rgba(90, 138, 46, 0.1);
    color: var(--accent-color);
}

.badge-modern-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.badge-modern-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Alert Styles */
.alert-modern {
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.alert-modern-success {
    background: rgba(90, 138, 46, 0.1);
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
}

.alert-modern-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-left: 4px solid #ef4444;
}

.alert-modern-info {
    background: rgba(45, 80, 22, 0.1);
    color: var(--primary-dark);
    border-left: 4px solid var(--primary-color);
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-modern {
    box-shadow: var(--shadow-lg);
}

.rounded-modern {
    border-radius: var(--radius-xl);
}

/* Additional Utility Classes */
.gap-2 {
    gap: 0.5rem;
}

.d-grid {
    display: grid;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

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

.mr-2 {
    margin-right: 0.5rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

/* Content Wrapper Improvements */
.content-wrapper {
    padding: 1.5rem;
}

.content-header {
    margin-bottom: 1.5rem;
}

/* DataTables Modern Styling */
.dataTables_wrapper .dataTables_filter input {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
}

.dataTables_wrapper .dataTables_length select {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: var(--radius-md);
    margin: 0 0.25rem;
    padding: 0.5rem 0.75rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white !important;
}

/* HandicapMaster-style Header/Navigation */
.main-header {
    background: var(--nav-green-dark) !important;
    border-bottom: 2px solid var(--primary-light);
}

.main-header .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-header .navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
}

.main-header .navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
}

.main-header .navbar-brand {
    color: white !important;
    font-weight: 700;
    font-size: 1.25rem;
}

.main-header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.main-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Top Navigation Layout Adjustments */
.layout-topnav .content-wrapper {
    margin-left: 0 !important;
}

.layout-topnav .main-sidebar {
    display: none !important;
}

/* Top Banner (Light Green) */
.top-banner {
    background: var(--nav-green-light);
    padding: 0.5rem 0;
    text-align: center;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Footer Styling - HandicapMaster Style */
.main-footer {
    background: var(--nav-green-dark) !important;
    color: rgba(255, 255, 255, 0.9);
    padding: 2rem 0;
    border-top: 2px solid var(--primary-light);
}

.main-footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.main-footer a:hover {
    color: white;
    text-decoration: underline;
}

.main-footer .footer-nav {
    margin: 1rem 0;
}

.main-footer .footer-nav a {
    margin: 0 1rem;
    font-weight: 500;
}

.main-footer .copyright {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    opacity: 0.8;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}

/* Select2 Modern Styling */
.select2-container--default .select2-selection--single {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    height: auto;
    padding: 0.5rem;
}

.select2-container--default .select2-selection--single:focus {
    border-color: var(--primary-color);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .content-wrapper {
        padding: 1rem;
    }
    
    .modern-card-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }
    
    .modern-card-header .d-flex {
        width: 100%;
        flex-direction: column;
    }
    
    .modern-card-header .btn-modern {
        width: 100%;
        justify-content: center;
    }
}

/* Override AdminLTE Styles */
.content-wrapper {
    background: var(--bg-secondary);
}

.main-header {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.main-sidebar {
    background: var(--bg-primary);
    border-right: 1px solid var(--border-color);
}

.nav-sidebar .nav-item > .nav-link {
    border-radius: var(--radius-md);
    margin: 0.25rem var(--spacing-sm);
    transition: all var(--transition-base);
}

.nav-sidebar .nav-item > .nav-link:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.nav-sidebar .nav-item > .nav-link.active {
    background: rgba(45, 80, 22, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.card {
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: var(--spacing-md) var(--spacing-lg);
}

.card-body {
    padding: var(--spacing-lg);
}

.btn {
    border-radius: var(--radius-md);
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-success {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-success:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.table {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.table thead th {
    background: var(--bg-secondary);
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: var(--font-size-xs);
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.form-control {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: all var(--transition-base);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

/* Global Dropdown/Select Styling - Smaller font size and prevent text cutoff */
select.form-control,
select {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    padding-right: 2rem;
    line-height: 1.5;
    height: auto;
    min-height: 38px;
    overflow: visible;
    text-overflow: ellipsis;
}

select.form-control option,
select option {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    line-height: 1.5;
    white-space: normal;
    word-wrap: break-word;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--text-primary);
    font-weight: 600;
}

/* Laravel Pagination Styling */
nav[aria-label="Page navigation"] {
    margin: 0;
    padding: 0;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li {
    display: inline-block;
    margin: 0;
}

.pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0.5rem 0.75rem;
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
    line-height: 1;
}

.pagination .page-link:hover {
    color: var(--primary-color);
    background-color: var(--bg-secondary);
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.pagination .page-item.active .page-link {
    color: white;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.pagination .page-item.active .page-link:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.pagination .page-item.disabled .page-link {
    color: var(--text-muted);
    background-color: var(--bg-secondary);
    border-color: var(--border-color);
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination .page-item.disabled .page-link:hover {
    transform: none;
    box-shadow: none;
    background-color: var(--bg-secondary);
    border-color: var(--border-color);
}

/* Pagination Info Text */
.pagination-info {
    text-align: center;
    margin: 1rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pagination-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    width: 100%;
}

.pagination-wrapper nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 576px) {
    .pagination {
        gap: 0.25rem;
    }
    
    .pagination .page-link {
        min-width: 32px;
        height: 32px;
        padding: 0.375rem 0.5rem;
        font-size: 0.8125rem;
    }
}

