body {
            background-color: #080f10; /* surface-container-lowest */
            background-image: 
                linear-gradient(30deg, #192122 12%, transparent 12.5%, transparent 87%, #192122 87.5%, #192122),
                linear-gradient(150deg, #192122 12%, transparent 12.5%, transparent 87%, #192122 87.5%, #192122),
                linear-gradient(30deg, #192122 12%, transparent 12.5%, transparent 87%, #192122 87.5%, #192122),
                linear-gradient(150deg, #192122 12%, transparent 12.5%, transparent 87%, #192122 87.5%, #192122),
                linear-gradient(60deg, #19212277 25%, transparent 25.5%, transparent 75%, #19212277 75%, #19212277), 
                linear-gradient(60deg, #19212277 25%, transparent 25.5%, transparent 75%, #19212277 75%, #19212277);
            background-size: 80px 140px;
            background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
            background-attachment: fixed;
            color: #dce4e4;
            overflow: hidden;
            margin: 0;
            height: 100%;
        }

        .glass-panel {
            background: rgba(30, 41, 59, 0.4); /* #1e293b at 40% */
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(0, 219, 231, 0.2); /* primary-fixed-dim at 20% */
            box-shadow: inset 0 0 20px rgba(0, 219, 231, 0.05);
            position: relative;
        }
        
        .glass-panel::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(0deg, rgba(0, 219, 231, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .glass-panel::after {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 2px; height: 16px;
            background: #00dbe7;
        }

        .glass-panel .top-left-highlight {
            position: absolute;
            top: 0; left: 0;
            width: 16px; height: 2px;
            background: #00dbe7;
        }

        /* Pulse animation for active elements */
        @keyframes pulse-glow {
            0% { box-shadow: 0 0 5px rgba(0, 219, 231, 0.2); }
            50% { box-shadow: 0 0 15px rgba(0, 219, 231, 0.6); }
            100% { box-shadow: 0 0 5px rgba(0, 219, 231, 0.2); }
        }
        .animate-pulse-glow {
            animation: pulse-glow 2s infinite;
        }

        /* Glitch switch animation */
        
        @keyframes glitch {
            0% { transform: translate(0) }
            20% { transform: translate(-2px, 1px) }
            40% { transform: translate(-1px, -1px) }
            60% { transform: translate(2px, 1px) }
            80% { transform: translate(1px, -1px) }
            100% { transform: translate(0) }
        }
        .glitch-hover:hover {
            animation: glitch 0.2s linear infinite;
        }*/
        
        /* Map scanning line */
        
        @keyframes scanline {
            0% { top: 0%; opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { top: 100%; opacity: 0; }
        }
        /*
        .scanner {
            position: absolute;
            width: 100%;
            height: 2px;
            background: #00dbe7;
            box-shadow: 0 0 10px #00dbe7;
            animation: scanline 4s linear infinite;
            z-index: 10;
        }*/

        #navigation-module,
#navigation-module main {
  height: 100%;
  min-height: 0;
}

#navigation-module main {
  display: flex;
  flex-direction: column;
}

#navigation-module .navigation-content {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
}

#navigation-module .map-zone {
  position: relative;
  overflow: hidden;
  min-height: 0;
}

#navigation-module .map-zone > div,
#navigation-module .map-zone canvas {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
}