/* --- VEHICLE & MARKER STYLES --- */
/* Extracted from style.css */

/* --- 3D NAV ARROW --- */
.nav_arrow_3d {
    display: block;
    width: 44px;
    height: 56px;
    pointer-events: none;
    --arrow-color: #0088ff;
    clip-path: polygon(50% 0%, 6% 100%, 94% 100%);
    background-color: var(--arrow-color);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(0, 0, 0, 0.1) 55%, rgba(255, 255, 255, 0.2) 100%);
    filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.5));
    transform-origin: center center;
    transition: transform 0.2s;
}

.nav_arrow_3d::before {
    content: "";
    position: absolute;
    inset: 0;
    clip-path: polygon(50% 0%, 94% 100%, 74% 100%, 50% 18%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.nav_arrow_3d::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    width: 32px;
    height: 42px;
    clip-path: polygon(50% 0%, 10% 100%, 90% 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.1) 70%, rgba(0, 0, 0, 0.1) 100%);
}