
/* Radar Nieba v14 - czyste ikonki ADS-B bez cieni */

/* usuń wszystkie cienie ikon samolotów */
.rn-aircraft-icon,
.rn-aircraft-shape-inner,
.rn-aircraft-list-icon,
.rn-aircraft-fighter .rn-aircraft-shape-inner {
    filter: none !important;
}


/* samoloty cywilne - niebieskie */
.rn-aircraft-marker.kind-airliner {
    --rn-ac-color: #1687c9;
}

.rn-aircraft-civil {
    color: #1687c9;
}


/* helikoptery - fioletowe */
.rn-aircraft-marker.kind-helicopter {
    --rn-ac-color: #9b5de5;
}

.rn-aircraft-helicopter {
    color: #9b5de5 !important;
}


/* myśliwce / wojskowe pozostają pomarańczowe */
.rn-aircraft-marker.kind-fighter {
    --rn-ac-color: #d97706;
}

.rn-aircraft-fighter {
    color: #d97706 !important;
}


/* cienka obwódka dla czytelności, ale bez cienia */
.rn-aircraft-icon svg,
.rn-aircraft-shape-inner svg,
.rn-aircraft-list-icon svg {
    stroke: rgba(255,255,255,.85) !important;
    stroke-width: .7px !important;
}


/* Czytelniejszy helikopter */
.rn-aircraft-helicopter .rn-aircraft-shape-inner,
.rn-aircraft-marker.kind-helicopter .rn-aircraft-icon {
    scale: 0.90;
}



/* =========================================
   Przełącznik typów samolotów
   ========================================= */

.rn-aircraft-mode-switch {
    display:grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:4px;

    width:100%;
    margin-top:8px;

    padding:4px;

    border-radius:9px;

    background:
        rgba(7,16,24,.72);

    border:
        1px solid
        rgba(255,255,255,.08);
}


.rn-aircraft-mode-switch button {
    min-width:0;

    padding:8px 5px;

    border:0;
    border-radius:6px;

    background:transparent;

    color:#81909c;

    font-size:10px;
    font-weight:700;

    cursor:pointer;

    transition:
        background .15s ease,
        color .15s ease,
        border-color .15s ease;
}


.rn-aircraft-mode-switch button:hover {
    color:#dce7ee;

    background:
        rgba(255,255,255,.05);
}


.rn-aircraft-mode-switch button.active {
    color:#fff;

    background:
        rgba(21,134,201,.25);

    box-shadow:
        inset 0 0 0 1px
        rgba(44,156,219,.55);
}


/* Wojskowe aktywne - pomarańczowe */
.rn-aircraft-mode-switch
button[data-aircraft-mode="military"].active {
    background:
        rgba(217,119,6,.20);

    box-shadow:
        inset 0 0 0 1px
        rgba(217,119,6,.55);

    color:#f4b35f;
}


/* Cywilne aktywne - niebieskie */
.rn-aircraft-mode-switch
button[data-aircraft-mode="civil"].active {
    background:
        rgba(22,135,201,.20);

    box-shadow:
        inset 0 0 0 1px
        rgba(22,135,201,.55);

    color:#6fc7f4;
}
