/* ============================================
   CRM Leads - Estilos
   Diseño: Clean, moderno (OpenAI / Odoo CRM)
   ============================================ */
#leads{
    padding: 20px;
}
/* --- KPIs Dashboard --- */
.leads-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.leads-kpi-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: box-shadow 0.15s ease;
}

.leads-kpi-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.leads-kpi-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leads-kpi-value {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -1px;
    line-height: 1.1;
}

.leads-kpi-value.currency::before {
    content: '€ ';
    font-size: 18px;
    font-weight: 500;
    color: #6b7280;
}

.leads-kpi-sub {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 2px;
}

/* --- Header / Toolbar --- */
.leads-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

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

.leads-header h1 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.leads-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.leads-view-tabs {
    display: flex;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 2px;
    gap: 2px;
}

.leads-view-tab {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
}

.leads-view-tab.active {
    background: #fff;
    color: #111827;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.leads-search-input {
    padding: 7px 12px 7px 32px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    width: 220px;
    background: #fff url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") 10px center no-repeat;
    transition: border-color 0.15s;
}

.leads-search-input:focus {
    outline: none;
    border-color: #3b82f6;
}

.leads-btn {
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.leads-btn-primary {
    background: #111827;
    color: #fff;
}

.leads-btn-primary:hover {
    background: #1f2937;
}

.leads-btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.leads-btn-secondary:hover {
    background: #e5e7eb;
}

.leads-btn-sm {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 6px;
}

.leads-btn-icon {
    padding: 6px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.leads-btn-icon:hover {
    background: #f3f4f6;
    color: #111827;
}

/* --- Kanban --- */
.leads-kanban {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 16px;
    min-height: 400px;
    align-items: flex-start;
    height: 65vh;
}

.leads-kanban::-webkit-scrollbar {
    height: 6px;
}

.leads-kanban::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 3px;
}

.leads-kanban::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.leads-kanban-col {
    min-width: 280px;
    max-width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: #f9fafb;
    border-radius: 12px;
    max-height: calc(100vh - 280px);
}

.leads-kanban-col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    position: sticky;
    top: 0;
    z-index: 2;
}

.leads-kanban-col-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.leads-kanban-col-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.leads-kanban-col-name {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.leads-kanban-col-count {
    font-size: 11px;
    color: #9ca3af;
    background: #e5e7eb;
    padding: 1px 6px;
    border-radius: 10px;
    font-weight: 500;
}

.leads-kanban-col-value {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
}

.leads-kanban-col-cards {
    padding: 0 8px 8px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 40px;
}

.leads-kanban-col-cards::-webkit-scrollbar {
    width: 4px;
}

.leads-kanban-col-cards::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
}

/* --- Kanban Card (compact) --- */
.leads-kanban-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
}

.leads-kanban-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.leads-kanban-card.sortable-ghost {
    opacity: 0.4;
    background: #eff6ff;
    border-color: #93c5fd;
}

.leads-kanban-card.sortable-chosen {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.leads-card-name {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.leads-card-company {
    font-size: 11px;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.leads-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
}

.leads-card-value {
    font-size: 12px;
    font-weight: 600;
    color: #111827;
}

.leads-card-meta {
    display: flex;
    align-items: center;
    gap: 4px;
}

.leads-card-tag {
    font-size: 10px;
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
}

.leads-card-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e5e7eb;
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.leads-kanban-col-add {
    padding: 8px 14px;
    border-top: 1px solid #e5e7eb;
}

.leads-kanban-add-btn {
    width: 100%;
    padding: 6px;
    border: 1px dashed #d1d5db;
    border-radius: 8px;
    background: transparent;
    color: #9ca3af;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s;
}

.leads-kanban-add-btn:hover {
    border-color: #9ca3af;
    color: #6b7280;
    background: #fff;
}

/* --- List View --- */
.leads-list-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.leads-list-table th {
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.leads-list-table td {
    padding: 10px 12px;
    font-size: 13px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: middle;
}

.leads-list-table tr {
    cursor: pointer;
    transition: background 0.1s;
}

.leads-list-table tbody tr:hover {
    background: #f9fafb;
}

.leads-list-etapa-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 6px;
    background: #f3f4f6;
}

.leads-list-etapa-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

/* --- Lead Detail Panel --- */
.leads-detail-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.leads-detail-overlay.active {
    opacity: 1;
}

.leads-detail-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(680px, 90vw);
    height: 100vh;
    background: #fff;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.leads-detail-panel.active {
    transform: translateX(0);
}

.leads-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #e5e7eb;
    gap: 12px;
}

.leads-detail-header-info {
    flex: 1;
    min-width: 0;
}

.leads-detail-header-name {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.leads-detail-header-company {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.leads-detail-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    padding: 4px;
    border-radius: 6px;
    transition: color 0.15s;
}

.leads-detail-close:hover {
    color: #111827;
    background: #f3f4f6;
}

.leads-detail-actions {
    display: flex;
    gap: 6px;
    padding: 12px 24px;
    border-bottom: 1px solid #f3f4f6;
    flex-wrap: wrap;
}

/* --- Stage Bar --- */
.leads-stage-bar {
    display: flex;
    gap: 4px;
    padding: 12px 24px;
    border-bottom: 1px solid #f3f4f6;
}

.leads-stage-step {
    flex: 1;
    padding: 6px 8px;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
    color: #9ca3af;
    background: #f3f4f6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.leads-stage-step.active {
    color: #fff;
    font-weight: 600;
}

.leads-stage-step.passed {
    background: #d1fae5;
    color: #065f46;
}

.leads-stage-step:hover {
    opacity: 0.85;
}

/* --- Detail Tabs --- */
.leads-detail-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 24px;
}

.leads-detail-tab {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    border: none;
    background: transparent;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.15s;
    margin-bottom: -1px;
}

.leads-detail-tab.active {
    color: #111827;
    border-bottom-color: #111827;
}

.leads-detail-tab:hover {
    color: #374151;
}

.leads-detail-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

/* --- Detail: Info Section --- */
.leads-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.leads-info-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.leads-info-item.full {
    grid-column: 1 / -1;
}

.leads-info-label {
    font-size: 11px;
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.leads-info-value {
    font-size: 14px;
    color: #111827;
    font-weight: 400;
}

.leads-info-value.empty {
    color: #d1d5db;
    font-style: italic;
}

/* --- Detail: Map --- */
.leads-map-container {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 16px;
    border: 1px solid #e5e7eb;
}

/* --- Detail: Timeline --- */
.leads-timeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.leads-timeline-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 10px;
}

.leads-timeline-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.leads-timeline-icon.call { background: #dcfce7; color: #16a34a; }
.leads-timeline-icon.email { background: #dbeafe; color: #2563eb; }
.leads-timeline-icon.note { background: #fef3c7; color: #d97706; }
.leads-timeline-icon.meeting { background: #ede9fe; color: #7c3aed; }
.leads-timeline-icon.whatsapp { background: #d1fae5; color: #059669; }

.leads-timeline-content {
    flex: 1;
    min-width: 0;
}

.leads-timeline-title {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.leads-timeline-text {
    font-size: 12px;
    color: #6b7280;
    white-space: pre-wrap;
    word-break: break-word;
}

.leads-timeline-date {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
}

/* --- Detail: Reminders --- */
.leads-reminder-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: #f9fafb;
    border-radius: 10px;
    margin-bottom: 8px;
}

.leads-reminder-check {
    margin-top: 2px;
    cursor: pointer;
    accent-color: #3b82f6;
}

.leads-reminder-info {
    flex: 1;
}

.leads-reminder-title {
    font-size: 13px;
    font-weight: 500;
    color: #111827;
}

.leads-reminder-date {
    font-size: 11px;
    color: #9ca3af;
}

.leads-reminder-title.completed {
    text-decoration: line-through;
    color: #9ca3af;
}

/* --- Email Composer Modal --- */
.leads-email-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
}

.leads-email-content {
    background: #fff;
    border-radius: 14px;
    width: min(560px, 92vw);
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

.leads-email-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #111827;
}

.leads-email-body {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.leads-email-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.leads-email-field label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
}

.leads-email-field input,
.leads-email-field textarea {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    transition: border-color 0.15s;
}

.leads-email-field input:focus,
.leads-email-field textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.leads-email-field textarea {
    min-height: 120px;
    resize: vertical;
}

.leads-email-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.leads-email-suggestion {
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    color: #374151;
    transition: all 0.15s;
}

.leads-email-suggestion:hover {
    background: #e5e7eb;
}

.leads-email-footer {
    padding: 12px 20px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

/* --- Lead Create/Edit Modal --- */
.leads-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
}

.leads-modal-content {
    background: #fff;
    border-radius: 14px;
    width: min(580px, 92vw);
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

.leads-modal-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.leads-modal-body {
    padding: 16px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.leads-modal-body .full {
    grid-column: 1 / -1;
}

.leads-form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.leads-form-group label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
}

.leads-form-group input,
.leads-form-group select,
.leads-form-group textarea {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
}

.leads-form-group input:focus,
.leads-form-group select:focus,
.leads-form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.leads-modal-footer {
    padding: 12px 20px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

/* --- Notification Bell --- */
.notif-bell-wrap {
    position: relative;
}

.notif-bell-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    color: #6b7280;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}

.notif-bell-btn:hover {
    background: #f3f4f6;
    color: #111827;
}

.notif-bell-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

.notif-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 340px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 2000;
    overflow: hidden;
}

.notif-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.notif-mark-all {
    font-size: 12px;
    color: #3b82f6;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.notif-mark-all:hover {
    text-decoration: underline;
}

.notif-dropdown-list {
    max-height: 360px;
    overflow-y: auto;
}

.notif-item {
    display: flex;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.1s;
    border-bottom: 1px solid #f9fafb;
}

.notif-item:hover {
    background: #f9fafb;
}

.notif-item.unread {
    background: #eff6ff;
}

.notif-item.unread:hover {
    background: #dbeafe;
}

.notif-item-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
}

.notif-item-content {
    flex: 1;
    min-width: 0;
}

.notif-item-title {
    font-size: 13px;
    font-weight: 500;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notif-item-msg {
    font-size: 12px;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notif-item-time {
    font-size: 11px;
    color: #9ca3af;
}

.notif-empty {
    padding: 30px 16px;
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
}

/* --- Config Modal (Etapas/Fuentes) --- */
.leads-config-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.leads-config-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f9fafb;
    border-radius: 8px;
}

.leads-config-item input[type="text"] {
    flex: 1;
    padding: 5px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
}

.leads-config-item input[type="color"] {
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.leads-config-delete {
    color: #ef4444;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    border-radius: 4px;
}

.leads-config-delete:hover {
    background: #fef2f2;
}

/* --- Interaction Modal --- */
.leads-interaction-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
}

/* --- Empty State --- */
.leads-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.leads-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.leads-empty-title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.leads-empty-text {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 16px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .leads-kpis {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .leads-kpi-card {
        padding: 14px;
    }

    .leads-kpi-value {
        font-size: 22px;
    }

    .leads-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .leads-header-right {
        width: 100%;
        flex-wrap: wrap;
    }

    .leads-search-input {
        width: 100%;
    }

    .leads-kanban {
        min-height: auto;
    }

    .leads-kanban-col {
        min-width: 260px;
    }

    .leads-detail-panel {
        width: 100vw;
    }

    .leads-info-grid {
        grid-template-columns: 1fr;
    }

    .leads-modal-body {
        grid-template-columns: 1fr;
    }
}
