
:root {
    --bg-dark: #09090b;
    --bg-light: #f8f9fa;
    --text-dark: #c1c1c2;
    --text-light: #333;
    --primary: #226666;
    --secondary: #e9edef;
    --accent: #2a7f7f;
    --sidebar-width: 300px;
    --header-height: 60px;
     --input-bg: #1f1f1f;
}

body[data-theme="light"] {
  --input-bg: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-dark);
    transition: background-color 0.3s, color 0.3s;
}

body[data-theme="light"] {
    background-color: var(--bg-light);
    color: var(--text-light);
}

#app {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-dark);
    color: var(--text-dark);
    height: 100vh;
    position: fixed;
    transition: transform 0.3s;
    z-index: 100;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="light"] .sidebar {
    background-color: var(--bg-light);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.logo {
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="light"] .logo {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo img {
    max-height: 40px;
    transition: opacity 0.3s ease;
}

.menu {
    padding: 20px 0;
    overflow-y: auto;
    height: calc(100vh - var(--header-height));
}

.menu-item {
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
}

.menu-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

body[data-theme="light"] .menu-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.menu-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--primary);
}

.menu-item .arrow {
    margin-left: auto;
    transition: transform 0.2s;
}

.menu-item.active .arrow {
    transform: rotate(90deg);
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    background-color: rgba(0, 0, 0, 0.2);
}

body[data-theme="light"] .submenu {
    background-color: rgba(0, 0, 0, 0.05);
}

.submenu.open {
    max-height: 500px;
}

.submenu-item {
    padding: 10px 20px 10px 50px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submenu-item:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

body[data-theme="light"] .submenu-item:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.submenu-item.active {
    color: var(--primary);
    font-weight: bold;
}

.page-menu {
    padding-right: 20px;
}

/* Main Content Styles */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    height: var(--header-height);
    background-color: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 10;
}

body[data-theme="light"] .header {
    background-color: var(--bg-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.page-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.user-menu {
    display: flex;
    align-items: center;
}

.user-menu .btn {
    margin-left: 10px;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

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

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-icon {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    margin-right: 5px;
}

.btn-sm {
  font-size: 0.75rem;
  padding: 5px 10px;
}


body[data-theme="light"] .btn-icon {
    color: var(--text-light);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    cursor: pointer;
}

/* Page Content Styles */
.page-content {
    flex: 1;
    padding: 20px;
    background-color: var(--bg-dark);
}

body[data-theme="light"] .page-content {
    background-color: var(--bg-light);
}

/* Dashboard Styles */
.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

body[data-theme="light"] .card {
    background-color: rgba(0, 0, 0, 0.03);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.card-header i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 10px;
}

.card-header h3 {
    font-size: 1.1rem;
}

.card-body {
    font-size: 0.9rem;
    line-height: 1.5;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin: 10px 0;
}

/* Activity Section Styles */
.activity-section {
    margin-top: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 1.3rem;
    color: var(--primary);
}


.badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

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

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


body[data-theme="light"] .footer {
    color: var(--text-light);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-logo {
    height: 20px;
    vertical-align: middle;
    margin-left: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.open {
        transform: translateX(0);
    }
    .main-content {
        margin-left: 0;
    }
    .menu-toggle {
        display: block;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: var(--bg-dark);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.dropdown-content.show {
    display: block;
}

body[data-theme="light"] .dropdown-content {
    background-color: white; /* Pure white in light mode */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
    padding: 10px 16px;
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s;
    background-color: transparent; /* No additional background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="light"] .dropdown-item {
    color: #333; /* Darker text in light mode */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
    background-color: var(--primary) !important;
    color: white !important;
}

body[data-theme="light"] .dropdown-item:hover {
    background-color: var(--primary) !important;
    color: white !important;
}

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

.dropdown-item i {
    margin-right: 8px;
    width: 18px;
    text-align: center;
    color: var(--primary);
}

/* Tabs */
.tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

body[data-theme="light"] .tabs {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
}

.tab.active {
    color: var(--primary);
    font-weight: bold;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-dark);
    transition: border-color 0.2s;
}

body[data-theme="light"] .form-control {
    background-color: white;
    border: 1px solid #ddd;
    color: var(--text-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

.btn {
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s, transform 0.2s;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Popup Styles */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup.hidden {
    display: none;
}

.popup-content {
    border-color: var(--accent);
    border-width: 1px;
    border-style: solid;
    background-color: var(--bg-dark);
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body[data-theme="light"] .popup-content {
    background-color: var(--bg-light);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="light"] .popup-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.popup-body {
    padding: 20px;
}

/* Form Radio Group */
.form-radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.form-radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}


/* Hamburger Menu Toggle */
.menu-toggle {
    display: none; /* Hidden by default on desktop */
    margin-right: 15px;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

body[data-theme="light"] .menu-toggle {
    color: var(--text-light);
}

/* Collapsible Sidebar States */
.sidebar {
    transition: transform 0.3s ease, width 0.3s ease;
}

.sidebar.collapsed {
    transform: translateX(-100%);
}

.main-content {
    transition: margin-left 0.3s ease;
}

.main-content.expanded {
    margin-left: 0;
}


/* Mobile Menu Styles */
@media (max-width: 992px) {
    .sidebar {
        position: fixed;
        left: -280px; /* Hidden by default */
        top: 0;
        width: 280px;
        height: 100vh;
        z-index: 1000;
        transition: left 0.3s ease;
    }

    .sidebar.open {
        left: 0;
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    /* Prevent body scrolling when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Desktop Styles */
@media (min-width: 993px) {
    .sidebar {
        left: 0 !important;
    }

    .mobile-overlay {
        display: none;
    }

    .menu-toggle {
        display: none;
    }
}

/* Animation for hamburger icon */
.menu-toggle.active i {
    transform: rotate(90deg);
}

.menu-toggle i {
    transition: transform 0.3s ease;
}

.sidebar {
    width: var(--sidebar-width); /* Fixed width */
    /* Remove resize-related properties */
}

.main-content {
    margin-left: var(--sidebar-width);
    transition: margin-left 0.3s ease;
}

.sidebar.collapsed {
    transform: translateX(-100%);
}

.main-content.expanded {
    margin-left: 0;
}

/* Mobile Behavior */
@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
        position: fixed; /* Fixed positioning for mobile */
    }

    .sidebar.open {
        transform: translateX(0);
        width: var(--sidebar-width);
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }
}

/* Desktop Behavior */
@media (min-width: 993px) {
    .sidebar:not(.collapsed) {
        transform: translateX(0);
        /* Remove position: relative - let it stay in normal document flow */
    }

    .main-content:not(.expanded) {
        margin-left: var(--sidebar-width);
        width: calc(100% - var(--sidebar-width));
        transition: margin-left 0.3s ease, width 0.3s ease;
    }

    .sidebar.collapsed {
        transform: translateX(-100%);
        position: fixed; /* Use fixed instead of absolute */
        z-index: 1000;
    }

    .main-content.expanded {
        margin-left: 0;
        width: 100%;
    }
}

/* Tabs */
.tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.tab {
    padding: 12px 24px;
    cursor: pointer;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
}

.tab.active {
    color: var(--primary);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}


/* Action Icons */
.actions {
    display: flex;
    gap: 20px;
}

.action-icon {
    cursor: pointer;
    font-size: 16px;
    transition: color 0.2s;
    padding-bottom: 4px;
}

.action-icon.view {
    color: var(--primary);
}

.action-icon.edit {
    color: #ffc107;
}

.action-icon.delete {
    color: #e74c3c;
}

.action-icon.manage {
    color: #17a2b8;
}

.action-icon:hover {
    opacity: 0.8;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.page-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.page-btn:disabled {
    background-color: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
}

.page-info {
    font-size: 14px;
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.club-selector select {
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--primary);
    padding: 8px 12px;
    border-radius: 4px;
    color: var(--text-dark);
}

/* Info Blocks Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-block {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.2s;
}

.info-block:hover {
    transform: translateY(-3px);
}

.block-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.block-header i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: var(--primary);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--primary);
    margin: 10px 0 5px;
}

.club-tag {
    display: inline-block;
    background: rgba(34, 102, 102, 0.2);
    color: var(--primary);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin: 10px 0;
}

/* Events List */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.club-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.club-filter select {
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--primary);
    padding: 5px 10px;
    border-radius: 4px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.event-card {
    display: flex;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 15px;
    gap: 15px;
}

.event-date {
    background: var(--primary);
    color: white;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    min-width: 50px;
}

.date-day {
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1;
}

.date-month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.event-details {
    flex: 1;
}

.event-location {
    margin: 5px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.event-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-top: 8px;
}

.event-actions {
    display: flex;
    align-items: center;
}

/* Notification */
.notification {
    display: flex;
    align-items: center;
    background: rgba(34, 102, 102, 0.1);
    border-left: 3px solid var(--primary);
    padding: 12px 15px;
    border-radius: 4px;
    gap: 10px;
}

.notification-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.notification-content {
    flex: 1;
    font-size: 0.95rem;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 5px;
}
/* Safety Alert Block - Highlighted but same size */
.info-block.safety-alert {
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-left: 4px solid #e74c3c;
    background-color: rgba(231, 76, 60, 0.08);
    position: relative;
    overflow: hidden;
}

.info-block.safety-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #e74c3c;
}

.info-block.safety-alert .block-header {
    color: #e74c3c;
}

.info-block.safety-alert .alert-icon {
    color: #e74c3c;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.btn-alert {
    background-color: #e74c3c;
    color: white;
    border: none;
}

.btn-alert:hover {
    background-color: #c0392b;
}

/* Ensure same size as other blocks */
.info-block.safety-alert {
    min-height: 220px; /* Match other blocks */
    display: flex;
    flex-direction: column;
}
/* Improved Spacing Inside Blocks */
.info-block .block-header {
    margin-bottom: 20px; /* Increased from 15px */
}

.info-block .block-content {
    display: flex;
    flex-direction: column;
    gap: 15px; /* New - adds space between all child elements */
}

.stat-number {
    margin: 5px 0 10px; /* Better vertical spacing */
}

/* Two Column Layout */
.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .two-column-section {
        grid-template-columns: 1fr;
    }
}

/* Events List Improvements */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between event cards */
}

.event-card {
    padding: 18px; /* Increased from 15px */
    display: flex;
    gap: 20px; /* Increased from 15px */
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Space between event details */
}

/* Notifications List */
.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notification-card {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 18px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.notification-icon {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.notification-time {
    font-size: 0.8rem;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Safety Alert Specific Spacing */
.info-block.safety-alert .block-content {
    gap: 18px; /* Slightly more space in alert box */
}

.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.error-message {
  padding: 2rem;
  text-align: center;
  color: #e74c3c;
}

.error-message button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.hidden {
    display: none;
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 320px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    pointer-events: none; /* allows clicks to pass through container */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(20px); }
}

.notification-card {
    animation: fadeIn 0.3s ease-out;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: auto;
}

.notification-card.fading-out {
    animation: fadeOut 0.5s ease forwards;
}

/* Type-specific solid backgrounds */
.notification-card.info {
    background-color: #226666;
}

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

.notification-card.warning {
    background-color: #ffc107;
    color: #333;
}

.notification-card.error {
    background-color: #e74c3c;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 5px;
    margin-left: 10px;
}

.notification-card.manual {
    border-left: 4px solid #fff;
    animation: pulseBorder 1s infinite;
}

@keyframes pulseBorder {
    0%, 100% { border-color: white; }
    50% { border-color: var(--primary); }
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background-color: var(--primary);
  z-index: 10000;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.progress-bar.hidden {
  opacity: 0;
  transition: opacity 0.3s ease;
}



