:root {
    --bg-dark: #0f0c15;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent-neon-blue: #00f3ff;
    --accent-neon-purple: #bc13fe;
    --accent-neon-green: #0aff68;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(188, 19, 254, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 243, 255, 0.1) 0%, transparent 40%);
    color: var(--text-primary);
    overflow: hidden;
}

.app-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    /* Updated for proper sidebar */
    height: 100vh;
}

/* Sidebar */
aside {
    background: rgba(15, 12, 21, 0.8);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.brand h1 {
    font-size: 1.2rem;
    background: linear-gradient(90deg, #00f3ff, #bc13fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-item {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.nav-item.active {
    background: linear-gradient(90deg, rgba(0, 243, 255, 0.1), transparent);
    color: var(--accent-neon-blue);
    border-left: 3px solid var(--accent-neon-blue);
}

.nav-item:hover {
    color: white;
    background: var(--glass-bg);
}

/* Main Content */
main {
    padding: 40px;
    overflow-y: auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.status-badge {
    background: rgba(10, 255, 104, 0.1);
    color: var(--accent-neon-green);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(10, 255, 104, 0.3);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(10, 255, 104, 0.2);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-neon-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Request Cards */
#request-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.request-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.request-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-neon-blue);
    box-shadow: 0 0 15px var(--accent-neon-blue);
}

.request-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-initial {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF0080, #7928CA);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.profile-text h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.profile-text span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.time-badge {
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 8px;
}

.request-body {
    margin-bottom: 25px;
}

.request-main-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    display: block;
}

.request-sub-text {
    color: var(--accent-neon-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-actions {
    display: flex;
    gap: 12px;
}

.btn-complete {
    background: linear-gradient(90deg, var(--accent-neon-green), #00c853);
    color: black;
    border: none;
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.btn-complete:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(10, 255, 104, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(10, 255, 104, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(10, 255, 104, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 255, 104, 0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.request-card.new {
    animation: slideIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ============================================
   Profile Page Styles
   ============================================ */

.profile-list {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.profile-list h4 {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.profile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 5px;
}

.profile-link:hover {
    background: var(--glass-bg);
    color: white;
}

.profile-link.active {
    background: rgba(0, 243, 255, 0.1);
    color: var(--accent-neon-blue);
}

.profile-link-avatar {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: white;
}

.admin-badge {
    font-size: 0.65rem;
    background: rgba(188, 19, 254, 0.2);
    color: var(--accent-neon-purple);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
}

/* Profile Sections */
.profile-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 25px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.section-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Profile Card */
.profile-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    flex-shrink: 0;
}

.profile-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Form Elements */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 12px 16px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
}

/* Fix dropdown styling - force dark background */
.form-group select {
    background-color: #1a1a2e !important;
    color: white !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group select option {
    background-color: #1a1a2e !important;
    color: white !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-neon-blue);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.form-group input[type="color"] {
    width: 60px;
    height: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: transparent;
}

.form-group small {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

/* Buttons */
.btn-save {
    background: linear-gradient(90deg, var(--accent-neon-blue), #0099cc);
    color: black;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.btn-save:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.btn-add {
    background: rgba(0, 243, 255, 0.1);
    color: var(--accent-neon-blue);
    border: 1px solid rgba(0, 243, 255, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
}

.btn-add:hover {
    background: rgba(0, 243, 255, 0.2);
}

.btn-icon {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.btn-icon:hover {
    opacity: 1;
}

.btn-cancel {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cancel:hover {
    background: var(--glass-bg);
    color: white;
}

/* Items Grid */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.item-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.2s;
}

.item-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.item-category {
    font-size: 0.7rem;
    color: var(--accent-neon-blue);
    font-weight: 700;
    letter-spacing: 1px;
}

.item-actions {
    display: flex;
    gap: 5px;
}

.item-title {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.item-preference {
    color: var(--accent-neon-green);
    font-size: 0.95rem;
    margin: 0 0 5px 0;
}

.item-search {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0 0 5px 0;
    font-style: italic;
}

.item-notes {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 8px 0 0 0;
    padding-top: 8px;
    border-top: 1px solid var(--glass-border);
}

/* Contact Card */
.contact-card .contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-neon-blue);
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 8px;
    transition: all 0.2s;
}

.contact-card .contact-link:hover {
    background: rgba(0, 243, 255, 0.2);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    grid-column: 1 / -1;
}

.empty-state span {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(145deg, rgba(30, 27, 40, 0.98), rgba(20, 17, 30, 0.98));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--glass-border);
}

.modal-header h3 {
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.modal-close:hover {
    color: white;
}

.modal-content form {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 10px;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(90deg, var(--accent-neon-green), #00c853);
    color: black;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.error {
    background: linear-gradient(90deg, #ff4444, #cc0000);
    color: white;
}

/* ============================================
   Enhanced Dashboard Cards with Smart Links
   ============================================ */

.preference-info {
    background: rgba(10, 255, 104, 0.1);
    border: 1px solid rgba(10, 255, 104, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 15px;
}

.preference-info .label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preference-info .value {
    color: var(--accent-neon-green);
    font-weight: 500;
}

.store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.store-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.store-link:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--accent-neon-blue);
    color: var(--accent-neon-blue);
}

.contact-info {
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

.contact-info .contact-name {
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info .contact-actions {
    display: flex;
    gap: 10px;
}

.contact-info .contact-actions a {
    color: var(--accent-neon-blue);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info .contact-actions a:hover {
    text-decoration: underline;
}

/* Acknowledge Button */
.btn-acknowledge {
    background: linear-gradient(90deg, var(--accent-neon-blue), #0099cc);
    color: black;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.btn-acknowledge:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

/* Urgent Request Styling */
.request-card.urgent {
    border-color: #ff4444;
    animation: urgentPulse 2s ease-in-out infinite;
}

.request-card.urgent::before {
    background: linear-gradient(180deg, #ff4444, #cc0000);
    box-shadow: 0 0 20px #ff4444;
}

@keyframes urgentPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 68, 68, 0.3); }
    50% { box-shadow: 0 0 25px rgba(255, 68, 68, 0.6); }
}

/* New request glow effect */
.request-card.new-arrival {
    animation: slideIn 0.4s ease-out, glowPulse 2s ease-in-out 3;
}

@keyframes glowPulse {
    0%, 100% { border-color: var(--glass-border); }
    50% { border-color: var(--accent-neon-blue); box-shadow: 0 0 20px rgba(0, 243, 255, 0.3); }
}

/* ============================================
   Responsive Styles
   ============================================ */

/* ============================================
   Admin Page Styles
   ============================================ */

.settings-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.setting-info h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.setting-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.toggle-switch.small {
    width: 40px;
    height: 22px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    border-radius: 28px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch.small .toggle-slider:before {
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(90deg, var(--accent-neon-blue), var(--accent-neon-purple));
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

.toggle-switch.small input:checked + .toggle-slider:before {
    transform: translateX(18px);
}

/* Stores List */
.stores-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.2s;
}

.store-item.inactive {
    opacity: 0.5;
}

.store-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.store-drag-handle {
    cursor: grab;
    color: var(--text-secondary);
    font-size: 1.2rem;
    user-select: none;
}

.store-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.store-info {
    flex: 1;
}

.store-info h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
}

.store-url {
    font-size: 0.75rem;
    color: var(--text-secondary);
    word-break: break-all;
}

.store-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Profile Admin Cards */
.profile-admin-card {
    padding: 20px;
}

.profile-admin-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.profile-link-avatar.large {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

.profile-admin-info h4 {
    margin: 0 0 5px 0;
}

.role-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.role-badge.admin {
    background: rgba(188, 19, 254, 0.2);
    color: var(--accent-neon-purple);
}

.role-badge.member {
    background: rgba(0, 243, 255, 0.2);
    color: var(--accent-neon-blue);
}

.profile-admin-actions {
    display: flex;
    gap: 10px;
}

.btn-link {
    color: var(--accent-neon-blue);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(0, 243, 255, 0.1);
    transition: all 0.2s;
}

.btn-link:hover {
    background: rgba(0, 243, 255, 0.2);
}

.btn-small {
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-small:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* System Info */
.system-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.info-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 0.95rem;
    color: var(--accent-neon-blue);
    word-break: break-all;
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 768px) {
    .app-container {
        grid-template-columns: 1fr;
    }

    aside {
        display: none;
    }

    main {
        padding: 20px;
    }

    .profile-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-details {
        width: 100%;
    }

    .btn-save {
        align-self: stretch;
    }

    .items-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 10px;
    }
}