:root {
    /* Paleta de colores unificada (Valkyrie - Ultra Dark) */
    --clr-primary: #8a2be2;
    /* Violeta (Eléctrico) */
    --clr-secondary: #00bcd4;
    /* Cian (Aqua Neón) */

    --clr-bg-main: #060614;
    /* Fondo principal (Casi negro, profundo) */
    --clr-bg-card: #0c0c20;
    /* Fondo de tarjetas (Base sólida) */
    --clr-bg-glass: rgba(12, 12, 32, 0.75);
    /* Base Glass (Más opaco y profundo) */
    --clr-bg-glass-light: rgba(255, 255, 255, 0.08);
    /* Un toque más claro para hovers/inputs */

    --clr-border: rgba(138, 43, 226, 0.35);
    /* Borde sutil púrpura */
    --clr-border-active: #00bcd4;
    /* Borde Cian/Azul al pasar el ratón */
    --clr-shadow-neon: 0 0 18px rgba(138, 43, 226, 0.5);
    /* Sombra Neón más intensa */

    --clr-text-main: #f0f0f0;
    --clr-text-muted: #888aa0;

    --radius-lg: 1.5rem;
    --radius-md: 0.5rem;

    /* Colores de Estado (Usados por Toast y Flash) */
    --clr-info: #3b82f6;
    /* Blue */
    --clr-success: #22c55e;
    /* Green */
    --clr-warning: #f59e0b;
    /* Yellow */
    --clr-error: #ef4444;
    /* Red */
}

/* Aplicación de variables al cuerpo */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--clr-bg-main);
    color: var(--clr-text-main);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    letter-spacing: -0.01em;
    transition: background-color 0.3s;

    /* [MEJORA] Mejor renderizado de fuentes */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body.no-scroll {
    overflow: hidden;
}

/* ======================================================= */
/* 2. FONDOS, ORBES Y ANIMACIONES */
/* ======================================================= */

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
    transition: background 20s ease-in-out;
    will-change: transform, background;
}

.orb-1 {
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, var(--clr-secondary) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    animation: float 30s ease-in-out infinite;
}

.orb-2 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, var(--clr-primary) 0%, transparent 70%);
    bottom: -250px;
    right: -250px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(60px, -80px) scale(1.06);
    }

    66% {
        transform: translate(-40px, 50px) scale(0.94);
    }
}

@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
    mix-blend-mode: soft-light;
}

/* Animaciones de Intersección (Definidas en app.js) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.animate-in-view {
    opacity: 1;
    transform: translateY(0);
}

/* [NUEVO] Animación para paneles deslizantes (usada en logs.html) */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-down {
    animation: slideDown 0.4s ease-out forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-scale-in {
    animation: scaleIn 0.3s ease-out forwards;
}


/* [NUEVO] Spinner de carga (movido desde base.html) */
.loading-spinner {
    width: 3.5rem;
    /* 56px */
    height: 3.5rem;
    /* 56px */
    border: 4px solid var(--clr-border);
    border-top-color: var(--clr-border-active);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* ======================================================= */
/* 3. EFECTO "GLASS" Y TARJETAS */
/* ======================================================= */

.glass-card {
    background: var(--clr-bg-glass);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border: 1px solid var(--clr-border);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease-out;
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.08), 0 10px 40px rgba(0, 0, 0, 0.5);
    will-change: transform, box-shadow, border-color;
}

.glass-card:hover {
    border-color: var(--clr-border-active);
    transform: translateY(-5px);
    box-shadow: var(--clr-shadow-neon), 0 20px 60px rgba(0, 0, 0, 0.8);
}

.stat-card {
    background-color: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease-out;
    will-change: transform, box-shadow, border-color;
}

.stat-card:hover {
    border-color: var(--clr-border-active);
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.3);
}

.badge-glass {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--clr-border);
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.2s;
}

/* ======================================================= */
/* 4. COMPONENTES DE UI */
/* ======================================================= */

/* Botones */
.btn-glass {
    background: var(--clr-bg-glass-light);
    /* Usando variable */
    border: 1px solid var(--clr-border);
    color: var(--clr-text-main);
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-out;
    will-change: transform, background-color, border-color;
    /* [MEJORA] */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1.25;
    /* [NUEVO] Asegura consistencia de altura */
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    /* Un poco más claro */
    border-color: var(--clr-border-active);
    transform: scale(1.05);
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-secondary) 0%, var(--clr-primary) 100%);
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.6), 0 5px 25px rgba(138, 43, 226, 0.5);
    transition: all 0.3s ease-out;
    border: none;
    will-change: transform, box-shadow;
    /* [MEJORA] */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1.25;
    /* [NUEVO] Asegura consistencia de altura */
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.9), 0 10px 40px rgba(138, 43, 226, 0.8);
    filter: brightness(1.1);
    /* [MEJORA] Añade un "pop" extra */
}

.btn-primary:disabled {
    background: var(--clr-text-muted);
    box-shadow: none;
    opacity: 0.5;
    cursor: not-allowed;
}

/* Campos de Input */
.input-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    color: var(--clr-text-main);
    transition: all 0.3s;
    padding: 0.75rem 1rem;
    will-change: border-color, box-shadow, background-color;
    /* [MEJORA] */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.input-glass::placeholder {
    color: var(--clr-text-muted);
    opacity: 0.8;
}

.input-glass:focus {
    outline: none;
    border-color: var(--clr-border-active);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
    background: var(--clr-bg-glass-light);
    /* [MEJORA] Feedback visual en focus */
}

/* [NUEVO] Estilos para que <select> se vea bien */
select.input-glass {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23888aa0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.25em 1.25em;
    padding-right: 2.5rem;
}

/* Scrollbar (Neón) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--clr-bg-main);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--clr-secondary), var(--clr-primary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #4dffff, #b18cff);
}

/* [NUEVO] Scrollbar para Firefox */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: var(--clr-primary) var(--clr-bg-main);
}




.nav-link {
    color: var(--clr-text-muted);
    transition: all 0.25s ease-out;
    padding: 0.8rem 1.5rem;
}

.nav-link:hover {
    background: var(--clr-bg-glass-light);
    color: var(--clr-text-main);
    transform: translateX(2px);
}

.nav-link-indicator.active {
    background: linear-gradient(to bottom, var(--clr-primary), var(--clr-secondary));
}

/* Toast / Notificaciones */
.toast {
    background: var(--clr-bg-card);
    backdrop-filter: blur(18px);
    border: 1px solid var(--clr-border);
}

.toast-icon {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}




/* ======================================================= */
/* 6. COMPONENTES ESPECIALES (Mapa del Dashboard) */
/* ======================================================= */
/* ... (Estilos del mapa existentes, ya están bien) ... */
.map-tooltip {
    position: absolute;
    background: var(--clr-bg-glass);
    /* [REFACTORIZADO] */
    backdrop-filter: blur(10px);
    border: 1px solid var(--clr-border);
    /* [REFACTORIZADO] */
    border-radius: 12px;
    padding: 10px 15px;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    min-width: 180px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.map-tooltip.visible {
    opacity: 1;
}

.tooltip-country {
    font-weight: 700;
    color: var(--clr-text-main);
    /* [REFACTORIZADO] */
    margin-bottom: 8px;
    font-size: 15px;
    border-bottom: 1px solid var(--clr-border);
    /* [REFACTORIZADO] */
    padding-bottom: 6px;
}

.tooltip-data {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tooltip-data span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--clr-text-muted);
    /* [REFACTORIZADO] */
}

.tooltip-data i {
    color: var(--clr-primary);
    /* [REFACTORIZADO] */
    font-size: 12px;
    width: 16px;
}

.ol-zoom {
    top: auto;
    bottom: 0.5rem;
    left: 0.5rem;
}

.ol-zoom button {
    background: var(--clr-bg-glass) !important;
    /* [REFACTORIZADO] */
    color: var(--clr-text-main) !important;
    /* [REFACTORIZADO] */
    border: 1px solid var(--clr-border) !important;
    /* [REFACTORIZADO] */
    border-radius: 6px !important;
    backdrop-filter: blur(10px);
}

.ol-zoom button:hover {
    background: var(--clr-primary) !important;
    /* [REFACTORIZADO] */
    border-color: var(--clr-primary) !important;
    /* [REFACTORIZADO] */
}

.ol-attribution {
    display: none;
}

.map-legend {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--clr-bg-glass);
    /* [REFACTORIZADO] */
    border: 1px solid var(--clr-border);
    /* [REFACTORIZADO] */
    border-radius: 10px;
    padding: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 999;
    min-width: 180px;
}

.legend-title {
    font-weight: 700;
    color: var(--clr-text-main);
    /* [REFACTORIZADO] */
    margin-bottom: 10px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--clr-border);
    /* [REFACTORIZADO] */
    padding-bottom: 8px;
}

.legend-title i {
    color: var(--clr-primary);
    /* [REFACTORIZADO] */
    font-size: 14px;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--clr-text-muted);
    /* [REFACTORIZADO] */
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-secondary);
    /* [REFACTORIZADO] */
    border: 1px solid rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    animation: legendPulse 2s ease-in-out infinite;
}

.legend-name {
    flex: 1;
    font-weight: 500;
}

.legend-count {
    font-weight: 700;
    color: var(--clr-secondary);
    /* [REFACTORIZADO] */
    background: rgba(0, 188, 212, 0.1);
    /* [REFACTORIZADO] */
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
}

@keyframes legendPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.map-counter {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--clr-bg-glass);
    /* [REFACTORIZADO] */
    border: 1px solid var(--clr-border);
    /* [REFACTORIZADO] */
    border-radius: 10px;
    padding: 10px 14px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-text-main);
    /* [REFACTORIZADO] */
}

.map-counter i {
    color: var(--clr-secondary);
    /* [REFACTORIZADO] */
    font-size: 12px;
    animation: legendPulse 2s ease-in-out infinite;
}

.empty-map {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    /* [REFACTORIZADO] */
}

.empty-map i {
    font-size: 48px;
    margin-bottom: 1rem;
    color: var(--clr-primary);
    /* [REFACTORIZADO] */
}

/* ======================================================= */
/* 7. [NUEVO] ESTILOS ESPECÍFICOS DE LOGS.HTML */
/* ======================================================= */

/* Estilos para el switcher de vistas (Tabla, Tarjetas, Timeline) */
#view-switcher button {
    color: var(--clr-text-muted);
}

#view-switcher button:hover {
    color: var(--clr-text-main);
}

#view-switcher button.active {
    background: var(--clr-bg-glass-light);
    color: var(--clr-text-main);
    border: 1px solid var(--clr-border);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Estilos para los filtros rápidos */
.quick-filter-btn {
    transition: all 0.3s ease;
}

.quick-filter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.3);
    border-color: var(--clr-border-active);
}

.quick-filter-btn.active {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.5);
    border-color: var(--clr-border-active);
    filter: brightness(1.2);
}

/* Hover de la tabla */
#logs-table-body tr {
    transition: background-color 0.2s ease-out;
}

#logs-table-body tr:hover {
    background-color: var(--clr-bg-glass-light);
}

#logs-table-body tr:hover td {
    color: var(--clr-text-main);
}

/* Estilos de Paginación */
#pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: var(--clr-bg-glass-light);
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
}

.pagination-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--clr-border-active);
    color: var(--clr-text-main);
    transform: scale(1.05);
}

.pagination-btn.active {
    background: linear-gradient(135deg, var(--clr-secondary) 0%, var(--clr-primary) 100%);
    color: white;
    border: none;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.6);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Estilos para la Vista de Tarjetas (Card View) */
.log-card {
    background: var(--clr-bg-glass);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease-out;
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.08), 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.log-card:hover {
    border-color: var(--clr-border-active);
    transform: translateY(-5px);
    box-shadow: var(--clr-shadow-neon), 0 20px 60px rgba(0, 0, 0, 0.8);
}

.log-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.log-card-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--clr-text-main);
    word-break: break-all;
}

.log-card-body {
    flex-grow: 1;
    font-size: 0.875rem;
}

.log-card-body .data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.log-card-body .data-item {
    background: var(--clr-bg-glass-light);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    text-align: center;
}

.log-card-body .data-item .value {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--clr-text-main);
}

.log-card-body .data-item .label {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.log-card-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--clr-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--clr-text-muted);
}

.log-card-actions button {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: all 0.2s;
}

.log-card-actions button:hover {
    color: var(--clr-border-active);
    background: var(--clr-bg-glass-light);
}

/* Estilos para la Vista de Línea de Tiempo (Timeline) */
#logs-timeline-container::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--clr-primary), var(--clr-secondary));
    border-radius: 2px;
    opacity: 0.2;
}

.timeline-item {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--clr-bg-card);
    border: 3px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--clr-secondary);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    border-color: var(--clr-border-active);
    box-shadow: var(--clr-shadow-neon);
}

.timeline-content {
    position: relative;
    top: -0.25rem;
}

.timeline-content .glass-card {
    padding: 1rem 1.5rem;
    /* Más pequeño para el timeline */
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.timeline-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--clr-text-main);
}

.timeline-header time {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.timeline-body {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.timeline-body p {
    margin-bottom: 0.5rem;
}

.timeline-body strong {
    color: var(--clr-text-main);
    font-weight: 500;
}

/* Estilos para el contenido del Modal */
#modal-content .modal-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--clr-border);
}

#modal-content .modal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

#modal-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-text-main);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

#modal-content h4 i {
    margin-right: 0.75rem;
    color: var(--clr-primary);
    font-size: 1.125rem;
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.data-pair {
    background: var(--clr-bg-glass-light);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
}

.data-pair-label {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
}

.data-pair-label i {
    margin-right: 0.5rem;
    width: 14px;
    text-align: center;
}

.data-pair-value {
    font-size: 1rem;
    color: var(--clr-text-main);
    font-weight: 500;
    word-break: break-all;
    font-family: 'JetBrains Mono', monospace;
}

/* Estilo para datos sensibles */
.data-pair-value.sensitive {
    color: var(--clr-error);
    font-weight: 700;
}