:root {
    --primary-color: #e74c3c;
    --secondary-color: #3498db;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --panic-color: #ff0000;
    --panic-bg: #ffebee;
}
/* ============================================
   DISEÑO MEJORADO DE ALERTAS
   ============================================ */

/* Contenedor principal de alertas */
.alerts-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    padding: 15px 0;
}
/* En tu archivo styles.css o en <style> */
.alert-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    animation: slideIn 0.3s ease-out;
    max-width: 350px;
}

.alert-notification.success {
    background: #28a745;
}

.alert-notification.warning {
    background: #ffc107;
    color: #333;
}

.alert-notification.error {
    background: #dc3545;
}

.alert-icon {
    font-size: 24px;
}

.alert-message {
    flex-grow: 1;
    font-weight: 500;
}

.alert-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.alert-close:hover {
    opacity: 0.8;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}/* ===== ESTILOS PARA NOTIFICACIONES ===== */

/* Contenedor de notificaciones */
.notificaciones-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
}

/* Notificación individual */
.notificacion {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid #28a745;
    animation: slideInRight 0.3s ease-out;
    transform: translateX(0);
    opacity: 1;
}

.notificacion.success {
    border-left-color: #28a745;
}

.notificacion.error {
    border-left-color: #dc3545;
}

.notificacion.warning {
    border-left-color: #ffc107;
}

.notificacion.panico {
    border-left-color: #dc3545;
    background: #ffe6e6;
}

/* Icono de la notificación */
.notificacion-icono {
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notificacion.success .notificacion-icono {
    background: #28a745;
    color: white;
}

.notificacion.error .notificacion-icono {
    background: #dc3545;
    color: white;
}

.notificacion.warning .notificacion-icono {
    background: #ffc107;
    color: #333;
}

.notificacion.panico .notificacion-icono {
    background: #dc3545;
    color: white;
}

/* Contenido de la notificación */
.notificacion-contenido {
    flex-grow: 1;
}

.notificacion-titulo {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.notificacion-mensaje {
    color: #666;
    font-size: 14px;
}

/* Botón para cerrar */
.notificacion-cerrar {
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    margin: 0;
    line-height: 1;
    transition: color 0.3s;
}

.notificacion-cerrar:hover {
    color: #333;
}

/* Animaciones */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notificacion.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

/* Tarjeta de alerta - Diseño moderno */
.alerta-item {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    border: 1px solid #e9ecef;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease-out;
}

.alerta-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

/* Cabecera de alerta */
.alerta-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f3f4;
}

.tipo-alerta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tipo-alerta i {
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
}

/* Colores por tipo de alerta */
.alerta-item[data-tipo="robo"] .tipo-alerta i { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.alerta-item[data-tipo="accidente"] .tipo-alerta i { background: linear-gradient(135deg, #f39c12, #e67e22); }
.alerta-item[data-tipo="incendio"] .tipo-alerta i { background: linear-gradient(135deg, #e67e22, #d35400); }
.alerta-item[data-tipo="violencia"] .tipo-alerta i { background: linear-gradient(135deg, #8e44ad, #732d91); }
.alerta-item[data-tipo="panico"] .tipo-alerta i { 
    background: linear-gradient(135deg, #c0392b, #922b21);
    animation: pulse 2s infinite;
}
.alerta-item[data-tipo="otro"] .tipo-alerta i { background: linear-gradient(135deg, #3498db, #2980b9); }

.tipo-texto {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2c3e50;
}

/* Fecha y hora */
.alerta-fecha {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #7f8c8d;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

.alerta-fecha i {
    color: #95a5a6;
}

/* Título de alerta */
.alerta-titulo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Descripción */
.alerta-descripcion {
    color: #546e7a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pie de alerta */
.alerta-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f1f3f4;
}

.alerta-ubicacion {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #5d6d7e;
    max-width: 60%;
}

.alerta-ubicacion i {
    color: #e74c3c;
    font-size: 0.9rem;
}

/* Indicador de prioridad */
.alerta-prioridad {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prioridad-alta {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.prioridad-media {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #ef6c00;
    border: 1px solid #ffb74d;
}

.prioridad-baja {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    border: 1px solid #81c784;
}

/* Acciones */
.alerta-acciones {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-accion {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-ver-mapa {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.btn-detalles {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #5d6d7e;
    border: 1px solid #dee2e6;
}

.btn-accion:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-ver-mapa:hover {
    background: linear-gradient(135deg, #2980b9, #21618c);
}

.btn-detalles:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
}

/* Estado de carga */
.carga-alertas {
    grid-column: 1 / -1;
    padding: 40px;
    text-align: center;
    color: #7f8c8d;
}

.carga-alertas i {
    color: #3498db;
    margin-bottom: 15px;
}

/* Sin alertas */
.sin-alertas {
    grid-column: 1 / -1;
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    border: 2px dashed #dee2e6;
}

.sin-alertas i {
    font-size: 3rem;
    color: #bdc3c7;
    margin-bottom: 15px;
}

.sin-alertas p {
    color: #7f8c8d;
    margin-bottom: 10px;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Badge de nueva alerta */
.alerta-item.nueva::before {
    content: "NUEVA";
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 4px 35px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .alerts-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .alerta-item {
        padding: 15px;
    }
    
    .alerta-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .alerta-fecha {
        align-self: flex-start;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: var(--dark-color);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.map-container {
    width: 100%;
    height: 400px; /* ¡ESTO ES ESENCIAL! */
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-top: 20px;
}
.logo {
    display: flex;
    align-items: center;
}

.logo i {
    font-size: 2rem;
    margin-right: 10px;
    color: var(--primary-color);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

main {
    padding: 2rem 0;
}

.dashboard {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.panic-button-container {
    text-align: center;
    margin-bottom: 2rem;
}

.panic-button {
    background-color: var(--panic-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.panic-button:hover {
    transform: scale(1.05);
    background-color: #cc0000;
}

.location-permission-notice {
    margin-top: 1rem;
    padding: 0.5rem;
    background-color: var(--panic-bg);
    border-left: 4px solid var(--panic-color);
    border-radius: 4px;
    font-size: 0.9rem;
}

.report-section {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-title {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    color: var(--dark-color);
}

.section-title i {
    margin-right: 10px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.location-input-group {
    display: flex;
}

.location-input-group input {
    border-radius: 4px 0 0 4px;
}

.location-input-group button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.location-input-group button:hover {
    background-color: #2980b9;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #c0392b;
}

.map-container {
    height: 400px;
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.recent-alerts {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.alerts-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.alerta-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alerta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.alerta-header {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.alerta-tipo {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.alerta-prioridad {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.alerta-prioridad.baja {
    background-color: var(--success-color);
    color: white;
}

.alerta-prioridad.media {
    background-color: var(--warning-color);
    color: white;
}

.alerta-prioridad.alta {
    background-color: var(--danger-color);
    color: white;
}

.alerta-prioridad.panico {
    background-color: var(--panic-color);
    color: white;
}

.alerta-body {
    padding: 1rem;
}

.alerta-titulo {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.alerta-descripcion {
    margin-bottom: 1rem;
    color: #555;
}

.alerta-detalles {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #777;
}

.alerta-ubicacion,
.alerta-fecha {
    display: flex;
    align-items: center;
}

.alerta-ubicacion i,
.alerta-fecha i {
    margin-right: 0.5rem;
}

.alerta-foto {
    margin-top: 1rem;
}

.alerta-foto img {
    width: 100%;
    border-radius: 4px;
}

.notificaciones-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 350px;
}

.notificacion {
    background-color: white;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    animation: slideIn 0.3s ease;
    opacity: 0;
    transform: translateX(100%);
}

@keyframes slideIn {
    from {opacity: 0; transform: translateX(100%);}
    to {opacity: 1; transform: translateX(0);}
}

.notificacion.success {
    border-left: 4px solid var(--success-color);
}

.notificacion.error {
    border-left: 4px solid var(--danger-color);
}

.notificacion.warning {
    border-left: 4px solid var(--warning-color);
}

.notificacion.info {
    border-left: 4px solid var(--secondary-color);
}

.notificacion-contenido {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.notificacion i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.notificacion.success i {
    color: var(--success-color);
}

.notificacion.error i {
    color: var(--danger-color);
}

.notificacion.warning i {
    color: var(--warning-color);
}

.notificacion.info i {
    color: var(--secondary-color);
}

.notificacion-cerrar {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.notificacion-cerrar:hover {
    color: #333;
}

.notificacion-emergencia {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--panic-color);
    color: white;
    padding: 1rem;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {transform: translateY(-100%);}
    to {transform: translateY(0);}
}

.notificacion-emergencia .contenido {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.notificacion-emergencia .icono {
    margin-right: 1rem;
}

.notificacion-emergencia .mensaje h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.notificacion-emergencia .mensaje p {
    margin: 0;
}

.notificacion-emergencia button {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    color: white;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.notificacion-emergencia button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .panic-button {
        width: 150px;
        height: 150px;
        font-size: 1rem;
    }
    
    .alerts-container {
        grid-template-columns: 1fr;
    }
    
    .notificaciones-container {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}
/* ============================================
   ESTILOS PARA EL MAPA LEAFLET
   ============================================ */

.map-container {
    width: 100%;
    height: 400px !important; /* Muy importante */
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin: 25px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Contenedor de carga del mapa */
.mapa-cargando {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f8f9fa;
    color: #6c757d;
}

.mapa-cargando i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #3498db;
}

/* Marcadores personalizados */
.marcador-alerta .marcador-contenido {
    background: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.marcador-alerta .marcador-contenido:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

/* Marcador de pánico especial */
.marcador-panico {
    animation: latido 1.5s infinite;
}

@keyframes latido {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Popups personalizados */
.leaflet-popup-content {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-width: 250px;
}

.popup-alerta h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
}

.popup-alerta p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.popup-alerta .descripcion {
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 3px solid #3498db;
}

.popup-acciones {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.btn-popup {
    flex: 1;
    padding: 8px 12px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background 0.3s;
}

.btn-popup:hover {
    background: #2980b9;
}

/* Error del mapa */
.error-mapa {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #ffeded, #fff5f5);
    border-radius: 12px;
}

.error-mapa i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 15px;
}

.error-mapa p {
    color: #c0392b;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .map-container {
        height: 300px !important;
    }
    
    .leaflet-popup-content {
        min-width: 200px;
    }
}