/* =========================
   Subdomain Header
   ========================= */
.subdomain-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-bottom: 1px solid #e0e0e0;
    background: white;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.subdomain-logo {
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: -1px;
}

.logo-sell    { color: #34a853; }
.logo-inactive { color: #999; }

.section-label {
    background: #34a853;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* =========================
   Login Button
   ========================= */
.sign-in {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #34a853;
    color: white;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.sign-in:hover {
    background: #2e7d32;
    transform: translateY(-1px);
}

.sign-in-icon { font-size: 16px; }

/* =========================
   Navigation
   ========================= */
.subdomain-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.nav-item {
    padding: 10px 20px;
    text-decoration: none;
    color: #666;
    border-radius: 25px;
    transition: all 0.3s;
    font-size: 14px;
}

.nav-item:hover {
    background: #e8f5e9;
    color: #34a853;
}

.nav-item.active {
    background: #34a853;
    color: white;
}

/* =========================
   Main Content
   ========================= */
.subdomain-main {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 20px;
    flex: 1;
}

/* =========================
   Hero
   ========================= */
.search-hero {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f8f9fa 100%);
    border-radius: 10px;
    margin-bottom: 40px;
}

.search-hero h1 {
    font-size: 42px;
    color: #202124;
    margin-bottom: 30px;
}

.search-box-large {
    display: flex;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.search-box-large input,
.search-box-large select {
    flex: 1;
    min-width: 200px;
    padding: 15px 20px;
    border: 2px solid #dadce0;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
}

.search-box-large input:focus,
.search-box-large select:focus { border-color: #34a853; }

.search-btn {
    padding: 15px 40px;
    background: #34a853;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover { background: #2e7d32; }

/* =========================
   Quick Links
   ========================= */
.quick-links h2 { margin-bottom: 20px; color: #202124; }

.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.quick-card {
    background: white;
    border: 1px solid #dadce0;
    border-radius: 10px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.quick-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: #34a853;
}

.quick-card h3 { color: #34a853; margin-bottom: 10px; }
.quick-card p { color: #666; font-size: 14px; }

/* =========================
   Deal / Company Cards
   ========================= */
.deal-list,
.companies-grid,
.investors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
}

.deal-card,
.company-card,
.investor-card {
    background: white;
    border: 1px solid #dadce0;
    border-radius: 10px;
    padding: 25px;
    transition: box-shadow 0.3s;
}

.deal-card:hover,
.company-card:hover,
.investor-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.deal-card h3,
.company-card h3,
.investor-card h3 { color: #202124; margin-bottom: 5px; }

.deal-sector,
.company-stage,
.investor-type {
    color: #34a853;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.deal-amount,
.company-raised {
    font-size: 22px;
    font-weight: bold;
    color: #34a853;
    margin-bottom: 10px;
}

.deal-meta,
.company-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.express-btn,
.connect-btn {
    margin-top: 15px;
    padding: 10px 25px;
    background: #34a853;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 14px;
}

.express-btn:hover,
.connect-btn:hover { background: #2e7d32; }

/* =========================
   Filters
   ========================= */
.filters-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.filter-input, .filter-select {
    flex: 1;
    min-width: 150px;
    padding: 12px 15px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 14px;
}

.filter-btn {
    padding: 12px 30px;
    background: #34a853;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.filter-btn:hover { background: #2e7d32; }

.filters-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.filters-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: end;
}

.filter-group { flex: 1; min-width: 200px; }

.filter-group label {
    display: block;
    margin-bottom: 5px;
    color: #202124;
    font-size: 14px;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 14px;
}

/* =========================
   Forms
   ========================= */
.post-form-container,
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border: 1px solid #dadce0;
    border-radius: 10px;
    padding: 40px;
}

.login-notice {
    background: #e8f5e9;
    border: 1px solid #34a853;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.login-notice p { color: #202124; margin-bottom: 10px; }
.login-notice a { color: #34a853; text-decoration: none; font-weight: 600; }
.login-notice a:hover { text-decoration: underline; }

.form-section { margin-bottom: 40px; }

.form-section h2 {
    color: #202124;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f5e9;
}

.form-group { margin-bottom: 20px; }

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #dadce0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #34a853;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row.three-col { grid-template-columns: 1fr 1fr 1fr; }

.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; }
.checkbox-item input[type="checkbox"] { width: auto; }
.checkbox-item label { margin: 0; font-weight: normal; cursor: pointer; }

.file-upload {
    border: 2px dashed #dadce0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.file-upload:hover { border-color: #34a853; background: #e8f5e9; }
.file-upload-icon { font-size: 40px; margin-bottom: 10px; }
.file-upload p { color: #666; margin-bottom: 5px; }
.file-upload small { color: #999; }

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.btn-secondary {
    padding: 12px 30px;
    background: white;
    color: #666;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover { background: #f8f9fa; }

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #34a853;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-primary:hover { background: #2e7d32; }

.required { color: #d93025; }

/* =========================
   Login / Register containers
   ========================= */
.login-container,
.register-container {
    max-width: 500px;
    margin: 60px auto;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.login-header,
.register-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h1,
.register-header h1 { color: #202124; margin-bottom: 10px; }
.login-header p,
.register-header p { color: #666; }

.login-options,
.register-options {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.login-option,
.register-option {
    flex: 1;
    padding: 30px 20px;
    border: 2px solid #dadce0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.login-option:hover,
.register-option:hover { border-color: #34a853; background: #e8f5e9; }

.login-option-icon,
.register-option-icon { font-size: 48px; margin-bottom: 15px; }

.login-option h3,
.register-option h3 { color: #34a853; margin-bottom: 10px; }
.login-option p,
.register-option p { color: #666; font-size: 14px; }

.back-link { text-align: center; margin-top: 20px; }
.back-link a { color: #1a73e8; text-decoration: none; }
.back-link a:hover { text-decoration: underline; }

.login-form-container {
    max-width: 450px;
    margin: 60px auto;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.login-form-header { text-align: center; margin-bottom: 30px; }
.login-form-header h1 { color: #202124; margin-bottom: 10px; }
.login-form-header p { color: #666; }

.user-type-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #34a853;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: #34a853;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.login-btn:hover { background: #2e7d32; }

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.remember-me { display: flex; align-items: center; gap: 8px; color: #666; }
.forgot-password { color: #34a853; text-decoration: none; }
.forgot-password:hover { text-decoration: underline; }

.form-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.form-footer p { color: #666; margin-bottom: 15px; }
.register-link { color: #34a853; text-decoration: none; font-weight: 600; }
.register-link:hover { text-decoration: underline; }

.back-to-selection { text-align: center; margin-top: 20px; }
.back-to-selection a { color: #666; text-decoration: none; font-size: 14px; }
.back-to-selection a:hover { color: #34a853; }

.investor-features {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.investor-features h4 { color: #202124; margin-bottom: 10px; font-size: 14px; }
.investor-features ul { list-style: none; color: #666; font-size: 13px; }
.investor-features li { margin-bottom: 5px; padding-left: 20px; position: relative; }
.investor-features li:before { content: "✓"; position: absolute; left: 0; color: #34a853; font-weight: bold; }

/* =========================
   Dashboard
   ========================= */
.dashboard-header {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header h1 { color: #202124; font-size: 24px; }

.user-menu { display: flex; align-items: center; gap: 20px; }
.user-info { text-align: right; }
.user-name { font-weight: 600; color: #202124; }
.user-title { font-size: 14px; color: #666; }

.logout-btn {
    padding: 8px 20px;
    background: #f8f9fa;
    border: 1px solid #dadce0;
    border-radius: 8px;
    cursor: pointer;
    color: #666;
}

.logout-btn:hover { background: #e8f5e9; color: #34a853; }

.dashboard-nav {
    background: #f8f9fa;
    padding: 15px 40px;
    border-bottom: 1px solid #e0e0e0;
}

.dashboard-nav-inner { display: flex; gap: 10px; }

.dash-nav-item {
    padding: 10px 20px;
    text-decoration: none;
    color: #666;
    border-radius: 8px;
    transition: all 0.3s;
}

.dash-nav-item:hover { background: #e8f5e9; color: #34a853; }
.dash-nav-item.active { background: #34a853; color: white; }

.dashboard-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.welcome-banner {
    background: linear-gradient(135deg, #34a853 0%, #2e7d32 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.welcome-banner h2 { margin-bottom: 10px; }
.welcome-banner p { opacity: 0.9; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    border: 1px solid #dadce0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.stat-icon { font-size: 32px; margin-bottom: 10px; }

.stat-value {
    font-size: 36px;
    font-weight: bold;
    color: #34a853;
    margin-bottom: 5px;
}

.stat-label { color: #666; font-size: 14px; }

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.dashboard-card {
    background: white;
    border: 1px solid #dadce0;
    border-radius: 10px;
    padding: 25px;
}

.dashboard-card h2 {
    color: #202124;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-all-link { font-size: 14px; color: #34a853; text-decoration: none; }
.view-all-link:hover { text-decoration: underline; }

.deal-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.deal-item:last-child { border-bottom: none; }
.deal-item-title { font-weight: 600; color: #202124; margin-bottom: 5px; }
.deal-item-meta { display: flex; gap: 15px; font-size: 14px; color: #666; }

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.status-active   { background: #e6f4ea; color: #34a853; }
.status-pending  { background: #fff3e0; color: #ff9800; }
.status-funded   { background: #e8f0fe; color: #1a73e8; }
.status-closed   { background: #fce8e8; color: #d93025; }

.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.quick-action-btn {
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #dadce0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.quick-action-btn:hover { background: #e8f5e9; border-color: #34a853; }
.quick-action-icon { font-size: 28px; margin-bottom: 10px; }
.quick-action-text { font-weight: 600; color: #202124; font-size: 14px; }

.empty-state { text-align: center; padding: 40px; color: #666; }
.empty-state-icon { font-size: 48px; margin-bottom: 15px; }

/* Stats section (index page) */
.stats-section {
    background: #34a853;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
}

.stats-section .stats-grid { margin-bottom: 0; }

.stats-section .stat-card {
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
}

.stats-section .stat-value { color: white; font-size: 32px; }
.stats-section .stat-label { color: rgba(255,255,255,0.85); }

/* Role cards (index page) */
.role-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.role-card {
    background: white;
    border: 2px solid #dadce0;
    border-radius: 10px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.role-card:hover { border-color: #34a853; box-shadow: 0 4px 12px rgba(52,168,83,0.15); transform: translateY(-2px); }

.role-icon { font-size: 48px; margin-bottom: 15px; }

.role-card h3 { color: #202124; margin-bottom: 10px; }
.role-card p { color: #666; font-size: 14px; margin-bottom: 15px; }

.feature-list { list-style: none; padding: 0; }

.feature-list li {
    color: #666;
    font-size: 13px;
    padding: 4px 0 4px 20px;
    position: relative;
}

.feature-list li:before { content: "✓"; position: absolute; left: 0; color: #34a853; font-weight: bold; }

/* Steps section */
.steps-section { margin-bottom: 40px; }
.section-title { text-align: center; margin-bottom: 30px; }
.section-title h2 { color: #202124; margin-bottom: 10px; }
.section-title p { color: #666; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step-card {
    background: white;
    border: 1px solid #dadce0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #34a853;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step-card h4 { color: #202124; margin-bottom: 10px; }
.step-card p { color: #666; font-size: 14px; }

/* =========================
   Messaging (messages.html)
   ========================= */
.messaging-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    background: white;
    border: 1px solid #dadce0;
    border-radius: 10px;
    overflow: hidden;
    height: 70vh;
    min-height: 500px;
}

.conversations-list {
    border-right: 1px solid #e0e0e0;
    overflow-y: auto;
}

.conversation-item {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
}

.conversation-item:hover { background: #f8f9fa; }
.conversation-item.active { background: #e8f5e9; }

.conv-name { font-weight: 600; color: #202124; margin-bottom: 3px; }
.conv-preview { font-size: 13px; color: #666; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.chat-area { display: flex; flex-direction: column; }

.chat-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: #202124;
}

.chat-messages { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; }

.message { max-width: 70%; }
.message.sent { align-self: flex-end; }
.message.received { align-self: flex-start; }

.message-bubble {
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.sent .message-bubble { background: #34a853; color: white; border-radius: 10px 10px 0 10px; }
.received .message-bubble { background: #f1f3f4; color: #202124; border-radius: 10px 10px 10px 0; }

.message-time { font-size: 12px; color: #999; margin-top: 4px; text-align: right; }

.chat-input {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #dadce0;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
}

.chat-input input:focus { border-color: #34a853; }

.send-btn {
    padding: 10px 20px;
    background: #34a853;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
}

.send-btn:hover { background: #2e7d32; }

/* =========================
   Sticky Footer
   ========================= */
html, body { height: 100%; margin: 0; }
body { display: flex; flex-direction: column; min-height: 100vh; font-family:'Aptos Display', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
.subdomain-main { flex: 1; }

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
    color: #666;
    font-size: 14px;
}

.footer a { text-decoration: none; color: #666; margin-left: 20px; }
.footer a:hover { text-decoration: underline; }

/* =========================
   Pagination
   ========================= */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-btn {
    padding: 8px 16px;
    background: #34a853;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.page-btn:hover { background: #2e7d32; }

.page-number {
    padding: 8px 14px;
    border-radius: 20px;
    background: #e8f5e9;
    color: #34a853;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.page-number.active { background: #34a853; color: white; }
.page-number:hover:not(.active) { background: #c8e6c9; }

/* =========================
   Mobile Responsive
   ========================= */
@media (max-width: 768px) {
    .subdomain-header { padding: 15px 20px; }
    .subdomain-logo { font-size: 22px; }
    .subdomain-nav { flex-wrap: wrap; gap: 5px; }
    .nav-item { padding: 8px 15px; font-size: 12px; }
    .search-box-large { flex-direction: column; }
    .search-box-large input, .search-box-large select, .search-btn { width: 100%; }
    .filters-bar { flex-direction: column; }
    .filter-input, .filter-select, .filter-btn { width: 100%; }
    .form-row, .form-row.three-col { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .dashboard-grid { grid-template-columns: 1fr; }
    .login-options, .register-options { flex-direction: column; }
    .messaging-container { grid-template-columns: 1fr; height: auto; }
    .conversations-list { border-right: none; border-bottom: 1px solid #e0e0e0; max-height: 200px; }
    .footer { flex-direction: column; gap: 10px; text-align: center; }
    .role-cards { grid-template-columns: 1fr; }
}

/* Header login button */
.header-right a.sign-in {
    display: flex; align-items: center; gap: 5px;
    padding: 8px 18px; border-radius: 20px;
    text-decoration: none; font-weight: 600; font-size: 14px;
    background: #34a853; color: white; transition: background 0.3s;
}

.header-right a.sign-in:hover { background: #2e7d32; }
