/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 根变量定义 */
:root {
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --secondary-color: #6b7280;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --background-color: #f8fafc;
    --surface-color: #ffffff;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --border-color: #e5e7eb;
    --border-radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* 基础样式 */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* 容器布局 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 头部样式 */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* 主要内容区域 */
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 卡片样式 */
.card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* 表单样式 */
.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.input {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: #fafafa;
}

.input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* 按钮样式 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px -8px rgba(59, 130, 246, 0.5);
}

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

.btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-1px);
}

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

.btn-success:hover {
    background: #059669;
    transform: translateY(-1px);
}

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

.btn-warning:hover {
    background: #d97706;
    transform: translateY(-1px);
}

.btn-info {
    background: #0ea5e9;
    color: white;
}

.btn-info:hover {
    background: #0284c7;
    transform: translateY(-1px);
}

/* 加载动画 */
.loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 操作按钮组 */
.actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

/* 配置文件卡片 */
.profile-card {
    margin-bottom: 24px;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.profile-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.profile-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.profile-status.visible {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.profile-status.hidden {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
}

/* 信息行 */
.profile-info {
    display: grid;
    gap: 12px;
}

.info-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.info-value {
    color: var(--text-primary);
    word-break: break-word;
}

.info-value a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-value a:hover {
    text-decoration: underline;
}

/* 元数据 */
.profile-meta {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* 错误页面样式 */
.error-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.error-title {
    font-size: 1.8rem;
    color: var(--error-color);
    margin-bottom: 16px;
}

.error-message {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.error-list {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
}

.error-list li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.error-actions {
    margin-top: 32px;
}

/* 无数据状态 */
.no-data {
    text-align: center;
    padding: 40px 20px;
}

.no-data h3 {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.no-data p {
    color: var(--text-secondary);
}

/* 结果区域 */
.result {
    animation: fadeIn 0.5s ease-in;
}

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

/* 页脚 */
.footer {
    text-align: center;
    padding: 24px 0;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 16px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .card {
        padding: 24px;
    }
    
    .info-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    
    .info-label {
        font-weight: 600;
        color: var(--text-primary);
    }
    
    .profile-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.8rem;
    }
    
    .card {
        padding: 20px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* ID链接样式 */
.profile-id-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px dotted #007bff;
    transition: all 0.3s ease;
}

.profile-id-link:hover {
    color: #0056b3;
    text-decoration: none;
    border-bottom: 1px solid #0056b3;
    background-color: rgba(0, 123, 255, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}

/* 余额页面样式 */
.balance-card {
    margin-bottom: 16px;
    border-left: 4px solid #28a745;
}

.balance-card.primary-account {
    border-left-color: #ffc107;
    background-color: #fff8e1;
}

.balance-card.zero-balance {
    border-left-color: #6c757d;
    opacity: 0.7;
}

.balance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.currency-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.currency-icon {
    font-size: 2rem;
}

.currency-details h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.balance-type {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
}

.balance-amount {
    text-align: right;
}

.main-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #28a745;
}

.reserved-amount {
    font-size: 0.9rem;
    color: #dc3545;
    margin-top: 4px;
}

.balance-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
}

.detail-label {
    color: #666;
    font-weight: 500;
}

.detail-value {
    color: #333;
    font-weight: normal;
}

/* 总资产汇总样式 */
.total-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-bottom: 24px;
}

.total-summary h3 {
    color: white;
    margin-bottom: 12px;
}

.total-value {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.total-summary small {
    opacity: 0.8;
}

/* 按钮样式增强 */
.btn-secondary {
    background-color: #6c757d;
    color: white;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #545b62;
    color: white;
    text-decoration: none;
}

/* 账户ID链接样式 */
.balance-id-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px dotted #007bff;
    transition: all 0.3s ease;
}

.balance-id-link:hover {
    color: #0056b3;
    text-decoration: none;
    border-bottom: 1px solid #0056b3;
    background-color: rgba(0, 123, 255, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}

/* 对账单页面样式 */
.status-card {
    margin-bottom: 16px;
}

.status-card.success {
    border-left: 4px solid #28a745;
    background-color: #d4edda;
}

.status-card.error {
    border-left: 4px solid #dc3545;
    background-color: #f8d7da;
}

.status-card.warning {
    border-left: 4px solid #ffc107;
    background-color: #fff3cd;
}

.status-code {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.status-code .code {
    font-weight: bold;
    font-size: 1.3rem;
    color: #333;
}

.headers-card {
    margin-bottom: 16px;
}

.headers-list {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 8px;
}

.header-item {
    display: flex;
    margin-bottom: 8px;
    padding: 8px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.header-key {
    font-weight: bold;
    color: #495057;
    min-width: 200px;
    margin-right: 12px;
}

.header-value {
    color: #6c757d;
    word-break: break-all;
    flex: 1;
}

/* 签名行特殊样式 */
.signature-item {
    background-color: #e8f4f8;
    border-left: 3px solid #17a2b8;
    margin-top: 4px;
}

.signature-item .header-key {
    color: #17a2b8;
    font-weight: bold;
}

.signature-value {
    color: #0c5460;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
}

/* 带复制按钮的值容器 */
.header-value-with-copy {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.header-value-with-copy .header-value {
    flex: 1;
    word-break: break-all;
}

/* 复制按钮样式 */
.copy-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 4px 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: scale(1.05);
}

.copy-btn:active {
    transform: scale(0.95);
}

.signature-item .copy-btn {
    background: #e8f4f8;
    border-color: #17a2b8;
}

.signature-item .copy-btn:hover {
    background: #d4e6ea;
    border-color: #138496;
}

/* 时间范围选择器样式 */
.time-range-container {
    display: flex;
    align-items: end;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.time-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 200px;
}

.time-input-group label {
    font-weight: bold;
    color: #495057;
    font-size: 14px;
}

.time-input {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.2s ease;
    min-width: 220px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.time-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.search-btn {
    height: 38px;
    padding: 0 20px;
    font-weight: bold;
    white-space: nowrap;
    margin-right: 8px;
}

.resend-btn {
    height: 38px;
    padding: 0 20px;
    font-weight: bold;
    white-space: nowrap;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.resend-btn:hover {
    background: #5a6268;
}

.resend-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .time-range-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .time-input-group {
        min-width: auto;
    }
    
    .search-btn {
        margin-top: 8px;
    }
}

.body-card {
    margin-bottom: 16px;
}

.content-tabs {
    display: flex;
    margin-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #6c757d;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #007bff;
    border-bottom-color: #007bff;
}

.tab-btn:hover {
    color: #007bff;
    background-color: #f8f9fa;
}

.tab-content {
    display: none;
}

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

.json-content, .raw-content {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 16px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.4;
    overflow-x: auto;
    max-height: 500px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.json-content {
    color: #333;
}

.raw-content {
    color: #666;
}

/* 余额页面响应式 */
@media (max-width: 768px) {
    .balance-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .balance-amount {
        text-align: center;
    }
    
    .balance-details {
        grid-template-columns: 1fr;
    }
    
    .header-item {
        flex-direction: column;
    }
    
    .header-key {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 4px;
    }
    
    .content-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        text-align: left;
        border-bottom: 1px solid #eee;
        border-radius: 0;
    }
}

/* 表格视图样式 */
.table-container {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #fff;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.5;
}

.data-table th {
    background: #f8f9fa;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    position: sticky;
    top: 0;
    z-index: 10;
}

.data-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #dee2e6;
    vertical-align: top;
    word-break: break-word;
}

.data-table tbody tr:hover {
    background-color: #f8f9fa;
}

.data-table tbody tr:nth-child(even) {
    background-color: #fcfcfc;
}

.data-table tbody tr:nth-child(even):hover {
    background-color: #f8f9fa;
}

/* 表格单元格样式 */
.key-cell {
    font-weight: 600;
    color: #495057;
    background-color: #f8f9fa !important;
    min-width: 150px;
}

.value-cell {
    max-width: 400px;
    word-wrap: break-word;
}

.type-cell {
    font-size: 12px;
    color: #6c757d;
    font-style: italic;
    min-width: 80px;
}

/* 值类型样式 */
.null-value {
    color: #6c757d;
    font-style: italic;
}

.undefined-value {
    color: #6c757d;
    font-style: italic;
}

.boolean-value {
    color: #007bff;
    font-weight: 600;
}

.number-value {
    color: #28a745;
    font-weight: 500;
}

.string-value {
    color: #343a40;
}

.array-value {
    color: #ffc107;
    font-weight: 500;
}

.object-value {
    color: #17a2b8;
    font-weight: 500;
}

.no-data {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
}

/* 响应式表格 */
@media (max-width: 768px) {
    .data-table {
        font-size: 12px;
    }
    
    .data-table th,
    .data-table td {
        padding: 8px 12px;
    }
    
    .value-cell {
        max-width: 200px;
    }
    
    .key-cell {
        min-width: 100px;
    }
}

/* 银行流水表格专用样式 */
.transactions-table {
    font-size: 13px;
}

.transactions-table th {
    background: #f1f5f9;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
    text-align: center;
}

.transactions-table td {
    vertical-align: middle;
    text-align: center;
}

/* 交易性质样式 */
.transaction-type {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    min-width: 40px;
}

.transaction-type.credit {
    background: #dcfce7;
    color: #166534;
}

.transaction-type.debit {
    background: #fecaca;
    color: #991b1b;
}

/* 金额样式 */
.amount-cell {
    text-align: right;
    font-weight: 600;
}

.amount.credit {
    color: #059669;
}

.amount.debit {
    color: #dc2626;
}

/* 余额样式 */
.balance-cell {
    text-align: right;
    font-weight: 500;
    color: #1f2937;
    background: #f9fafb;
}

/* 状态样式 */
.status {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status.received {
    background: #dcfce7;
    color: #166534;
}

.status.sent {
    background: #dbeafe;
    color: #1e40af;
}

/* 描述和流水号列样式 */
.description-cell,
.reference-cell {
    max-width: 200px;
    text-align: left;
    word-break: break-word;
    font-size: 12px;
}

.reference-cell {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    color: #6b7280;
}

/* 流水表格响应式 */
@media (max-width: 1200px) {
    .transactions-table {
        font-size: 11px;
    }
    
    .description-cell,
    .reference-cell {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .transactions-table {
        font-size: 10px;
    }
    
    .transactions-table th,
    .transactions-table td {
        padding: 6px 4px;
    }
    
    .description-cell,
    .reference-cell {
        max-width: 100px;
    }
    
    .transaction-type,
    .status {
        font-size: 10px;
        padding: 2px 4px;
    }
}

/* 自定义私钥功能样式 */
.custom-key-section {
    background: #f8fafc;
    border-radius: 8px;
    padding: 16px;
}

.custom-key-checkbox {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-text {
    color: #374151;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

.custom-key-status {
    margin-left: 24px;
}

/* 模态框样式 */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
}

.close-btn {
    font-size: 24px;
    font-weight: bold;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.close-btn:hover {
    color: #374151;
    background: #f3f4f6;
}

.modal-body {
    padding: 24px;
}

.modal-description {
    margin-bottom: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 0 0 12px 12px;
}

/* 响应式模态框 */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 16px;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .custom-key-checkbox {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
} 