/* 
 * AuditBerry GeoVision - Premium UI Styles
 * Aesthetics: Glassmorphism, Dark Tech, Professional Green Accents
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
    --bg-dark: #0f172a;
    --glass-bg: rgba(15, 23, 42, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --accent-green: #10b981;
    --accent-gold: #f59e0b;
    --accent-blue: #3b82f6;
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    --danger: #ef4444;

    /* Readability Enhancement v65.1.60 */
    --text-shadow-strong: 0 1px 3px rgba(0, 0, 0, 0.8), 0 2px 5px rgba(0, 0, 0, 0.5);
    --text-shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.6);

    /* Palette: Cyberpunk Holographic */
    --neon-green: #00ff9f;
    --neon-blue: #00d1ff;
    --neon-magenta: #ff00ff;
    --neon-red: #ff3131;
    --neon-gold: #f59e0b;
    --glass-deep: rgba(15, 23, 42, 0.92);
    /* Increased for readability */
    --glow-green: 0 0 15px rgba(0, 255, 159, 0.6);
}

/* Botones y Selectores Premium */
#health-view-selector {
    background: rgba(15, 23, 42, 0.9) !important;
    border: 1px solid var(--neon-blue) !important;
    color: var(--neon-blue) !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 209, 255, 0.2);
    outline: none;
}

#health-view-selector option {
    background: #0f172a;
    color: white;
}

/* Panel Flota Enterprise (Leftmost) */
.fleet-sidebar {
    width: 320px;
    height: calc(100vh - 60px);
    background: transparent !important;
    /* v3.9.6 Ultra-Holographic */
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: none !important;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2100;
    /* Over everything layout */
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-sidebar.collapsed {
    width: 80px;
}

/* Botón de Ayuda GeoVision (v58.36) - Estabilización Crítica v58.69 */
#fleet-help-btn {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    width: 30px !important;
    height: 30px !important;
    background: rgba(39, 174, 96, 0.2) !important;
    border: 1px solid #2ecc71 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #2ecc71 !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    font-size: 16px !important;
    box-shadow: 0 0 15px rgba(39, 174, 96, 0.4) !important;
    z-index: 2500 !important;
    /* Por encima de todo */
    transition: all 0.3s ease;
}

/* Reposicionamiento en colapso para no encimarse con frutas */
.fleet-sidebar.collapsed #fleet-help-btn {
    top: auto !important;
    bottom: 20px !important;
    right: 50% !important;
    transform: translateX(50%) !important;
}

#fleet-help-btn:hover {
    background: #2ecc71 !important;
    color: black !important;
    box-shadow: 0 0 20px #2ecc71 !important;
}

.sidebar-collapse-trigger {
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 48px;
    background: var(--bg-dark);
    border: 1px solid var(--neon-blue);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
    cursor: pointer;
    z-index: 2200;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0, 209, 255, 0.2);
}

.sidebar-collapse-trigger:hover {
    background: var(--neon-blue);
    color: black;
    box-shadow: 0 0 15px var(--neon-blue);
}

.fleet-sidebar.collapsed .sidebar-collapse-trigger i {
    transform: rotate(180deg);
}

.fleet-title {
    padding: 30px 20px 10px 20px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 209, 255, 0.5), 0 0 20px rgba(0, 0, 0, 0.9);
    /* Enhanced v3.9.7 */
    letter-spacing: -1px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, transparent 100%);
    /* Subtle anchor v3.9.7 */
}

.fleet-list {
    padding: 10px 15px;
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-blue) transparent;
}

.fleet-list::-webkit-scrollbar {
    width: 4px;
}

.fleet-list::-webkit-scrollbar-thumb {
    background: var(--neon-blue);
    border-radius: 10px;
}

.fleet-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 15px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: grid;
    grid-template-columns: 65px 1fr 60px;
    /* Matched to icon size */
    gap: 22px;
    /* Increased separation */
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

/* Informational Card for Loading/Empty States v3.9.8 */
.fleet-placeholder-card {
    background: rgba(15, 23, 42, 0.45) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 15px;
    transition: all 0.3s ease;
}

.fleet-placeholder-card i {
    display: block;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--neon-blue);
    opacity: 0.8;
}

/* Visibility Control for Collapsed State */
.fleet-sidebar.collapsed .fleet-title,
.fleet-sidebar.collapsed .main-header,
.fleet-sidebar.collapsed .fleet-footer,
.fleet-sidebar.collapsed .fleet-card-info,
.fleet-sidebar.collapsed .health-percent-text,
.fleet-sidebar.collapsed .fleet-card-alert {
    display: none;
}

.fleet-sidebar.collapsed .fleet-list {
    padding: 5px;
}

.fleet-sidebar.collapsed .fleet-card {
    grid-template-columns: 1fr;
    padding: 12px 5px;
    justify-content: center;
    gap: 0;
    background: transparent !important;
    border: none !important;
}

/* [v65.1.62] CLEAN COLLAPSE: Minimalist Icons Only */
.fleet-sidebar.collapsed .fleet-title,
.fleet-sidebar.collapsed .fleet-card-name,
.fleet-sidebar.collapsed .fleet-card-info {
    display: none !important;
}

/* [v65.1.62] NEON FOCUS: Parity with ColdChain (High Visibility) */
.fleet-sidebar.collapsed .fleet-card.active .fruit-icon-container {
    border: 2px solid var(--neon-green) !important;
    box-shadow: 0 0 25px var(--neon-green), inset 0 0 10px var(--neon-green) !important;
    animation: orchard-pulse 2s infinite ease-in-out;
    overflow: visible !important; /* Permitir que el resplandor se vea */
    z-index: 10;
}

@keyframes orchard-pulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.15); filter: brightness(1.3); box-shadow: 0 0 35px var(--neon-green); }
}

.fleet-sidebar.collapsed .fruit-icon-container {
    margin: 0 auto;
}

.fleet-sidebar.collapsed .health-gauge-container {
    display: none;
}

.fleet-card:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--neon-blue);
    transform: translateX(8px);
    box-shadow: 0 0 20px rgba(0, 209, 255, 0.15);
}

.fleet-card.active {
    border-color: var(--neon-green);
    background: rgba(0, 255, 159, 0.05);
    box-shadow: 0 0 25px rgba(0, 255, 159, 0.1);
}

/* Botón de Borrado Premium (Hover Reveal) */
.delete-orchard-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--neon-red);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.fleet-card:hover .delete-orchard-btn {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1.1);
}

.delete-orchard-btn:hover {
    background: var(--neon-red);
    color: white;
    box-shadow: 0 0 10px var(--neon-red);
}

/* Iconos de Frutas Neón */
.fruit-icon-container {
    width: 65px;
    height: 65px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fruit-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* PERFECT PROPORTIONS */
    mix-blend-mode: screen;
    filter: brightness(1.2) contrast(1.1);
    transform: scale(1.1);
    /* Slightly larger within container */
}

/* Specific crop positions are now handled by <img> clips or separate files, 
   but for now we focus on fixing the display logic in JS */

.fleet-card:hover .fruit-icon-container {
    filter: drop-shadow(0 0 15px currentColor);
    transform: scale(1.1);
}

/* Gauge Circular de Salud */
.health-gauge-container {
    position: relative;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.health-gauge-svg {
    transform: rotate(-90deg);
}

.health-gauge-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 4;
}

.health-gauge-fill {
    fill: none;
    stroke: var(--neon-green);
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-dasharray 1s ease;
    filter: drop-shadow(0 0 5px var(--neon-green));
}

.health-percent-text {
    position: absolute;
    font-size: 0.8rem;
    font-weight: 800;
    color: white;
}

/* Detalles de la Tarjeta */
.fleet-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fleet-card-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
    text-shadow: var(--text-shadow-strong);
}

.fleet-card-alert {
    color: var(--neon-red);
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.alert-pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-red);
    border-radius: 50%;
    animation: alert-ping 1.5s infinite;
}

@keyframes alert-ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Footer del Sidebar */
.fleet-footer {
    padding: 20px;
    border-top: 1px solid var(--glass-border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.fleet-footer-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
    cursor: pointer;
}

.fleet-footer-btn:hover {
    background: var(--neon-blue);
    color: black;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 209, 255, 0.5);
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark) url('../img/futuristic_orchard.png') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-primary);
    overflow: hidden;
}

/* Glassmorphism Effect */
.glass-panel {
    background: rgba(15, 23, 42, 0.8);
    /* Refined for contrast v4.0.8 */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

#geovision-app {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.geovision-layout {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Top Navigation Bar */
.top-nav {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    background: transparent !important;
    /* v3.9.6 Ultra-Holographic */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: none !important;
    z-index: 2000;
}

.nav-item.active,
.nav-item#nav-return {
    color: var(--neon-green) !important;
    text-shadow: 0 0 10px var(--neon-green);
    border-bottom-color: var(--neon-green) !important;
    background: rgba(0, 255, 159, 0.05) !important;
}

.nav-item:hover {
    color: #fff;
    text-shadow: 0 0 8px var(--neon-green);
}

.nav-item.active,
.nav-item#nav-return {
    color: var(--neon-green) !important;
    text-shadow: 0 0 10px var(--neon-green);
    border-bottom-color: var(--neon-green) !important;
    background: rgba(0, 255, 159, 0.05) !important;
}

.nav-item:hover {
    color: #fff;
    text-shadow: 0 0 8px var(--neon-green);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container i {
    color: var(--neon-green);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px var(--neon-green));
}

.logo-container span {
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -1px;
    color: #ffffff;
    text-shadow: 0 0 8px #000, 0 0 15px var(--neon-green), 0 0 25px rgba(0, 255, 159, 0.4);
}

.logo-container span span {
    color: var(--neon-green) !important;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-item {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.nav-item i {
    font-size: 1.1rem;
}

.nav-item:hover,
.nav-item.active {
    color: var(--accent-green);
}

.nav-item.active::after {
    content: '';
    width: 20px;
    height: 3px;
    background: var(--accent-green);
    border-radius: 10px;
    margin-top: 4px;
}

/* Main Layout */
.geovision-main {
    display: flex;
    flex: 1;
    position: relative;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.4) 100%);
}

/* Holographic Polygon Style (Leaflet Overrides) */
.fluorescent-polygon {
    filter: drop-shadow(0 0 4px var(--neon-green)) drop-shadow(0 0 8px var(--neon-green));
    stroke-dasharray: 5, 5;
    animation: poly-pulse 3s infinite alternate ease-in-out;
}

.fluorescent-polygon:hover {
    filter: drop-shadow(0 0 10px var(--neon-green)) drop-shadow(0 0 20px var(--neon-green));
    stroke-width: 5px !important;
    fill-opacity: 0.3 !important;
}

@keyframes poly-pulse {
    0% {
        stroke-opacity: 0.6;
        fill-opacity: 0.1;
    }

    100% {
        stroke-opacity: 1;
        fill-opacity: 0.2;
    }
}

/* 3D-like Grid Pattern (Simulado vía CSS si el navegador lo permite en SVG) */
.polygon-grid-pattern {
    fill: url(#grid);
    /* Se definirá por JS en sentinel-engine */
    fill-opacity: 0.2;
}

/* Sidebar Styling - Restored v4.0.1 for Scrollbar Functionality */
aside.left-sidebar {
    width: 310px;
    margin: 15px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 18px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-green) transparent;
    background: rgba(15, 23, 42, 0.85) !important;
    /* Slightly more solid v4.0.8 */
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px) !important;
    pointer-events: auto !important;
}

/* Ensure data-cards in sidebar have the uniform look */
.left-sidebar .data-card {
    background: rgba(15, 23, 42, 0.4) !important;
    border: 1px solid var(--glass-border) !important;
    backdrop-filter: blur(8px) !important;
}

aside.left-sidebar>* {
    pointer-events: auto;
}

aside.right-sidebar {
    width: 340px;
    margin: 20px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 25px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-green) transparent;
    background: rgba(15, 23, 42, 0.9) !important;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px) !important;
    pointer-events: auto !important;
    /* Restored v4.0.1 */
}

aside.right-sidebar>* {
    pointer-events: auto;
}

/* Custom Scrollbar Premium */
aside::-webkit-scrollbar {
    width: 4px;
}

aside::-webkit-scrollbar-track {
    background: transparent;
}

aside::-webkit-scrollbar-thumb {
    background: var(--accent-green);
    border-radius: 10px;
}

aside::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

.panel-header {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-shadow: var(--text-shadow-strong);
    /* Performance boost v4.0.8 */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.data-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    /* Más separación entre tarjetas */
    height: auto;
    overflow: visible;
}

.search-bar {
    background: rgba(15, 23, 42, 0.6) !important;
    /* Darker base v4.0.8 */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    /* Higher contrast */
}

.search-bar i {
    color: var(--neon-blue);
    /* Clearer icon */
    text-shadow: 0 0 5px rgba(0, 209, 255, 0.5);
}

.search-bar input {
    background: transparent;
    border: none;
    color: white;
    outline: none;
    width: 100%;
    text-shadow: var(--text-shadow-soft);
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    text-shadow: none;
}

/* List Items - Ajuste para permitir que crezca pero respete el espacio */
.list-container {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 20px;
}

/* Vigilance Panel - Restricción de altura con scroll interno */
.vigilance-panel {
    margin-top: 10px;
    border-top: 1px solid var(--glass-border);
    padding-top: 15px;
}



.vigilance-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.6rem;
}

.vigilance-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-green);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.4), var(--text-shadow-strong);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

/* List Items - Enhanced v4.0.1 for Premium Legibility */
.list-item {
    padding: 12px 15px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.5) !important;
    /* Darker base for list cards */
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
}

.list-item .item-name {
    font-weight: 700;
    color: white;
    text-shadow: var(--text-shadow-strong);
}

.list-item .item-status {
    text-shadow: var(--text-shadow-soft);
}

.list-item:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: var(--accent-green) !important;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.list-item.active {
    border-color: var(--neon-blue) !important;
    background: rgba(0, 209, 255, 0.1) !important;
}

.leaflet-draw-actions {
    left: 380px !important;
    margin-bottom: 90px !important;
}

.leaflet-draw-actions li a {
    background-color: var(--glass-deep) !important;
    color: white !important;
    border: 1px solid var(--glass-border) !important;
}

/* Delete Last Point Icon Restoration v4.0.1 */
.leaflet-draw-draw-polygon,
.leaflet-draw-draw-polyline,
.leaflet-draw-draw-rectangle,
.leaflet-draw-draw-circle,
.leaflet-draw-draw-marker,
.leaflet-draw-draw-circlemarker,
.leaflet-draw-edit-edit,
.leaflet-draw-edit-remove {
    filter: invert(1) brightness(100) !important;
    /* Force white icons for visibility */
}

.item-info {
    display: flex;
    flex-direction: column;
}

.item-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.item-status {
    font-size: 0.75rem;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-green);
}

/* Action Buttons */
.btn-tool {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
}

.stake-icon {
    background: var(--accent-gold);
    border: 2px solid white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: 800;
    font-size: 0.7rem;
}

.bio-hazard-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
}

.bio-hazard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

/* Rediseño del pulso para máxima visibilidad y herencia de color */
.pulsating-hotspot::after,
.pulsating-hotspot-gold::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: inherit;
    /* Hereda el background-color del inline style */
    transform: translate(-50%, -50%) scale(1);
    animation: hotspot-sonar 2s infinite ease-out;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

@keyframes hotspot-sonar {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

.pulsating-hotspot-gold::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid #f59e0b;
    background: #f59e0b;
    animation: hotspot-pulse-gold 1.5s infinite ease-out;
    opacity: 0;
    z-index: 1;
}

.incident-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-left: 4px solid #ff4444;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
}

.btn-action-sm {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: white;
    font-size: 0.6rem;
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

/* Custom Leaflet Popup - Glassmorphism */
.leaflet-popup-content-wrapper {
    background: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid var(--accent-green) !important;
    color: white !important;
    border-radius: 12px !important;
    padding: 0 !important;
}

.leaflet-popup-tip {
    background: rgba(15, 23, 42, 0.9) !important;
    border: 1px solid var(--accent-green) !important;
}

.sentinel-ai-popup {
    padding: 15px;
    min-width: 180px;
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.popup-header i {
    color: var(--accent-green);
    font-size: 1rem;
}

.popup-header b {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.popup-body {
    font-size: 0.75rem;
}

.popup-row {
    margin-bottom: 6px;
    display: flex;
    flex-direction: column;
}

.popup-label {
    color: var(--text-muted);
    font-size: 0.65rem;
    text-transform: uppercase;
}

.popup-value {
    font-weight: 600;
}

/* [v4.0.8] Incident tags refined */
.bug-floating-tag {
    position: absolute;
    top: -22px;
    left: 12px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid currentColor;
    border-radius: 4px;
    padding: 1px 5px;
    font-size: 0.55rem;
    font-weight: 800;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 10;
}

.bug-name {
    display: none;
    margin-left: 5px;
}

.bug-tag-wrapper:hover .bug-name {
    display: inline;
}

.bug-tag-wrapper:hover .bug-floating-tag {
    transform: scale(1.1);
    background: var(--bg-dark);
    z-index: 1000;
}

.btn-tool:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--accent-green);
}

.btn-tool.active {
    background: var(--accent-green);
    color: #000;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%);
    color: white;
    border: none;
    margin-top: 15px;
}

/* Map Area */
#map-container {
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.15) !important;
    opacity: 0.75;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modo GeoVision Render Filter */
#map-container.geovision-render {
    background: #000 !important;
}

/* 3D Fluorescent Fence Effect */
.geovision-fence {
    filter:
        drop-shadow(0 0 10px #10b981) drop-shadow(0 0 20px rgba(16, 185, 129, 0.4)) drop-shadow(0 0 30px rgba(16, 185, 129, 0.2));
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
    /* Efecto de borde brillante interno */
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: -4px;
}

/* Glassy Tech Style for Rows */
.geovision-row-tech {
    filter: drop-shadow(0 0 10px #3b82f6);
    stroke-dasharray: 12, 18;
    stroke-width: 5;
}

/* Glassy Tech Style for Labels */
.map-label {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--accent-green);
    color: white;
    font-weight: 800;
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(16, 185, 129, 0.3);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Leaflet Controls & Zoom Placement v4.0.5 (Priority Enforcement) */
.leaflet-control-container {
    pointer-events: none !important;
    /* Allow clicks through empty areas */
}

.leaflet-control {
    pointer-events: auto !important;
    /* Re-enable for controls */
}

.leaflet-top.leaflet-right {
    top: 100px !important;
    /* Move down further to clear all overlays */
    right: 420px !important;
    /* Move further left to clear metrics panel (340px+margin) */
    z-index: 15000 !important;
    /* Absolute top priority */
    pointer-events: auto !important;
}

.leaflet-control-zoom {
    border: 2px solid var(--neon-green) !important;
    background: var(--glass-deep) !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 0 0 25px rgba(0, 255, 159, 0.5) !important;
    border-radius: 12px !important;
    overflow: hidden;
}

.leaflet-control-zoom a {
    background: transparent !important;
    color: var(--neon-green) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 40px !important;
    /* Increase size for usability */
    width: 40px !important;
    font-size: 1.4rem !important;
    font-weight: 800 !important;
}

.leaflet-control-zoom a:hover {
    background: rgba(0, 255, 159, 0.3) !important;
    color: white !important;
}

/* Vibrance Enforcement for Shapes v4.0.6 */
.leaflet-interactive {
    stroke: #00ff9f !important;
    /* Pure Neon Green */
    stroke-width: 3 !important;
    /* Restore clinical precision */
    fill: #00ff9f !important;
    fill-opacity: 0.15 !important;
    filter: drop-shadow(0 0 6px rgba(0, 255, 159, 0.6)) !important;
}

.hilera-path {
    stroke: #3b82f6 !important;
    stroke-width: 5 !important;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.8)) !important;
}

.hilera-path {
    /* Specific for polylines if needed */
    stroke: #3b82f6 !important;
    filter: drop-shadow(0 0 5px #3b82f6);
}

/* Action Popup Styling v4.0.4 */
.leaflet-popup-content-wrapper {
    background: var(--glass-deep) !important;
    color: white !important;
    border: 1px solid var(--glass-border) !important;
    backdrop-filter: blur(12px) !important;
    border-radius: 12px !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5) !important;
}

.leaflet-popup-tip {
    background: var(--glass-deep) !important;
    border: 1px solid var(--glass-border) !important;
}

.leaflet-popup-content {
    margin: 12px !important;
}

.leaflet-draw-toolbar a {
    background-color: transparent !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.leaflet-draw-toolbar a:hover {
    background-color: rgba(0, 255, 159, 0.1) !important;
}

.leaflet-draw-actions {
    left: 380px !important;
    margin-bottom: 90px !important;
}

.leaflet-draw-actions li a {
    background-color: var(--glass-deep) !important;
    color: white !important;
    border: 1px solid var(--glass-border) !important;
}

.leaflet-draw-draw-polygon,
.leaflet-draw-draw-polyline,
.leaflet-draw-draw-rectangle,
.leaflet-draw-draw-circle,
.leaflet-draw-draw-marker,
.leaflet-draw-draw-circlemarker,
.leaflet-draw-edit-edit,
.leaflet-draw-edit-remove {
    filter: invert(1) brightness(100) !important;
    /* Force white icons */
}

.leaflet-control-zoom a {
    color: var(--accent-green) !important;
    background: transparent !important;
    border-bottom: 1px solid var(--glass-border) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px !important;
    width: 30px !important;
    font-size: 1.2rem !important;
}

/* Neon Glows for Shapes */
.geovision-polygon-glow {
    filter: drop-shadow(0 0 8px #10b981);
}

.geovision-polyline-glow {
    filter: drop-shadow(0 0 5px #3b82f6);
}

/* Digital Labels on Map */
.map-label {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--accent-green);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* Pulse animation for hotspots */
@keyframes pulse-hotspot {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

/* Detailed Digital Bushes (Arbolitos) */
.bush-icon {
    background: radial-gradient(circle at 30% 30%, #34d399 0%, #059669 50%, #064e3b 100%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        inset 0 0 5px rgba(255, 255, 255, 0.5),
        0 4px 6px rgba(0, 0, 0, 0.5),
        0 0 12px rgba(16, 185, 129, 0.6);
    z-index: 1000 !important;
}

/* Efecto de 'hojas' o textura interna */
.bush-icon::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 40%;
    height: 40%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    filter: blur(1px);
}

/* Macro-Grid for the background in Render mode */
.sentinel-render::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(16, 185, 129, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 500;
}

/* Charts and Data */
.data-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
    margin-top: 20px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.data-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.data-value {
    font-weight: 800;
    color: white;
}

.risk-indicator {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 10px 0;
    overflow: hidden;
}

.risk-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #f59e0b, #ef4444);
    width: 65%;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Pulse animation for interactive guidance - Aggressive version */
@keyframes pulse-btn {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.8);
        outline: 2px solid rgba(245, 158, 11, 0.5);
        outline-offset: 0px;
    }

    70% {
        box-shadow: 0 0 0 25px rgba(245, 158, 11, 0);
        outline: 2px solid rgba(245, 158, 11, 0);
        outline-offset: 15px;
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
        outline: 2px solid rgba(245, 158, 11, 0);
        outline-offset: 0px;
    }
}

@keyframes pulse-btn-green {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.8);
        outline: 2px solid rgba(16, 185, 129, 0.5);
        outline-offset: 0px;
    }

    70% {
        box-shadow: 0 0 0 25px rgba(16, 185, 129, 0);
        outline: 2px solid rgba(16, 185, 129, 0);
        outline-offset: 15px;
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
        outline: 2px solid rgba(16, 185, 129, 0);
        outline-offset: 0px;
    }
}

.pulse-guide {
    animation: pulse-btn 1.4s infinite cubic-bezier(0.4, 0, 0.6, 1) !important;
    border-color: var(--accent-gold) !important;
    position: relative;
    z-index: 9999;
    /* Asegurar que esté por encima de todo */
}

/* Hilera Labels v4.0.8 (Compact) */
.hilera-label-box {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    pointer-events: none;
    transition: all 0.3s ease;
}

.hilera-label:hover .hilera-label-box {
    transform: scale(1.1);
    z-index: 1000;
    background: var(--bg-dark);
    box-shadow: 0 0 15px var(--accent-blue);
}

/* Expediente Fitosanitario Styles */
.sentinel-lab-report {
    padding: 2px;
    font-family: 'Inter', sans-serif;
}

.lab-header {
    border-bottom: 2px solid var(--glass-border);
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.lab-id {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 800;
    letter-spacing: 1px;
}

.lab-status {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    color: white;
    margin-top: 5px;
}

.lab-agent {
    margin-bottom: 15px;
}

.lab-label {
    display: block;
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2px;
}

.lab-value {
    font-size: 1rem;
    font-weight: 800;
    color: white;
}

.lab-scientific {
    font-size: 0.75rem;
    color: var(--accent-gold);
}

.lab-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.meta-item .lab-value {
    font-size: 0.8rem;
}

.lab-recommendation {
    padding: 10px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    margin-bottom: 15px;
}

.lab-recommendation p {
    margin: 5px 0 0;
    font-size: 0.7rem;
    line-height: 1.4;
    color: #e2e8f0;
}

.lab-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.55rem;
    color: var(--text-muted);
    border-top: 1px dashed var(--glass-border);
    padding-top: 8px;
}

/* Technical Vigilance Table */
.vigilance-panel {
    flex-shrink: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.vigilance-table-wrapper {
    max-height: 180px;
    overflow-y: auto;
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    scrollbar-width: thin;
    scrollbar-color: var(--neon-blue) transparent;
}

/* Custom Scrollbar Visibility Fix */
.vigilance-table-wrapper::-webkit-scrollbar {
    width: 6px;
    display: block;
}

.vigilance-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--neon-blue);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 5px var(--neon-blue);
}

.vigilance-table-wrapper::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.vigilance-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vigilance-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.7rem;
}

.vigilance-table th {
    text-align: left;
    padding: 8px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
    font-weight: 600;
}

.vigilance-table td {
    padding: 10px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.row-pathogen {
    font-weight: 600;
}

.row-species {
    font-style: italic;
    color: var(--text-muted);
    display: block;
    font-size: 0.65rem;
}

.badge-risk {
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 800;
}

/* Selección de Lote - Cerca Naranja Premium */
.geovision-fence {
    filter: drop-shadow(0 0 8px #f59e0b);
    stroke: #f59e0b !important;
    stroke-width: 8px !important;
    stroke-dasharray: 10, 5;
    animation: fencePulse 2s infinite;
}

@keyframes fencePulse {
    0% {
        stroke-opacity: 0.8;
        stroke-width: 8;
    }

    50% {
        stroke-opacity: 1;
        stroke-width: 10;
    }

    100% {
        stroke-opacity: 0.8;
        stroke-width: 8;
    }
}

/* Ajustes de Layout para evitar encimamientos */
.left-sidebar {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
}

.data-card {
    flex-shrink: 0;
    margin-bottom: 25px;
}

/* Fleet Footer & Actions (v56.0) */
.fleet-footer {
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.fleet-footer-btn {
    flex: 1;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
}

.fleet-footer-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.fleet-footer-btn.active {
    background: rgba(0, 255, 159, 0.1);
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 159, 0.2);
}

.fleet-footer-btn:active {
    transform: scale(0.95);
}

/* Limpieza de resets estructurales incorrectos */
aside.left-sidebar {
    max-height: calc(100vh - 100px);
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
}

/* Rediseño de Tarjetas Fleet & Panels v3.9.6 (Ultra-Holographic) */
.fleet-card,
.panel-content,
.health-chart-container,
.data-card {
    background: rgba(15, 23, 42, 0.3) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.fleet-card:hover {
    background: rgba(15, 23, 42, 0.5) !important;
    border-color: var(--neon-green) !important;
    transform: translateX(5px);
}

#map-container {
    background: rgba(15, 23, 42, 0.15) !important;
    opacity: 0.75;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modo Sólido v3.9.6: Cubre el fondo del body */
#map-container.solid-map {
    background: var(--bg-dark) !important;
    opacity: 1 !important;
    z-index: 5;
}

#map-container.solid-map .leaflet-tile-pane {
    opacity: 1 !important;
}

.leaflet-container {
    background: #000 !important;
}

.leaflet-tile-pane {
    opacity: 0.8 !important;
}

/* Undo Drawing Button v4.0.8 (Holographic Gold) */
#btn-undo-draw {
    background: rgba(245, 158, 11, 0.1) !important;
    border: 1px solid var(--accent-gold) !important;
    color: var(--accent-gold) !important;
    text-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInDown 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 5px;
    /* Separate from Borrar Trazos */
}

#btn-undo-draw:hover {
    background: rgba(245, 158, 11, 0.2) !important;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

#btn-undo-draw:active {
    transform: scale(0.95);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* [v65.1.56] NOTIFICACIONES PREMIUM JARVIS */
.jarvis-notification {
    position: fixed;
    top: 25px;
    right: 25px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid #bfff00;
    color: #bfff00;
    padding: 12px 25px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 99999 !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(191, 255, 0, 0.3), 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: jarvis-notification-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    max-width: 320px;
}

.jarvis-notification i {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px #bfff00);
}

.jarvis-notification.error {
    border-color: #ff3131;
    color: #ff3131;
    box-shadow: 0 0 20px rgba(255, 49, 49, 0.3), 0 10px 30px rgba(0, 0, 0, 0.5);
}

@keyframes jarvis-notification-in {
    from { opacity: 0; transform: translateX(30px) scale(0.9); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes jarvis-notification-out {
    from { opacity: 1; transform: translateX(0) scale(1); }
    to { opacity: 0; transform: translateX(30px) scale(0.9); }
}