﻿/* GLOBAL (not scoped) styles for leaflet tech markers */

.tech-marker-icon {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", Roboto, sans-serif;
    pointer-events: none;
}

.tech-marker-wrap {
    display: flex;
    align-items: flex-start;
    gap: .4rem;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,.8));
}

.tech-marker-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #ff8080 0%, #e00000 40%, #4a0000 70%);
    box-shadow: 0 0 10px rgba(255,0,0,.8), 0 0 20px rgba(255,0,0,.4);
    border: 2px solid #fff;
}

.tech-marker-label {
    background: rgba(0,0,0,.7);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: .5rem;
    padding: .3rem .5rem .4rem;
    backdrop-filter: blur(6px) saturate(160%);
    -webkit-backdrop-filter: blur(6px) saturate(160%);
    min-width: 120px;
    max-width: 160px;
}

.tech-marker-name {
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    line-height: 1.2;
}

.tech-marker-status {
    color: #ffbfbf;
    font-size: .7rem;
    line-height: 1.2;
    font-weight: 500;
}
