/**
 * Font Awesome TTF Font - DOĞRU ÇALIŞMASI İÇİN
 */

@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fa-solid-900.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Admin paneli için */
.wp-admin select[name="mlk_fa_icon"] {
    font-family: 'FontAwesome', 'Courier New', monospace !important;
}

/* Frontend marker */
.mlk-marker {
    font-family: 'FontAwesome' !important;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/* İkon render için CSS - BU ÇOK ÖNEMLİ */
.mlk-marker::before {
    content: attr(data-icon); /* data-icon'dan unicode'u al */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Legend ikon */
.mlk-icon::before {
    content: attr(data-icon);
}
