/* =====================================================
   PUPA MARINE MAPS v1.0
   https://pupayelkenakdeniz.com
=====================================================*/

html,
body{
    margin:0;
    padding:0;
}

/* Ana kapsayıcı */

.pupa-map-container{
    position:relative;
    width:100%;
    height:750px;
    border-radius:14px;
    overflow:hidden;
    background:#eef3f8;
    box-shadow:0 6px 20px rgba(0,0,0,.12);
}

/* Harita */

.pupa-map{
    width:100%;
    height:100%;
}

/* Başlık */

.pupa-map-title{

    position:absolute;

    left:50%;

    top:14px;

    transform:translateX(-50%);

    z-index:999;

    background:rgba(8,69,117,.93);

    color:white;

    padding:12px 24px;

    border-radius:14px;

    text-align:center;

    pointer-events:none;

    box-shadow:0 4px 12px rgba(0,0,0,.25);

}

.pupa-map-title h2{

    margin:0;
    font-size:22px;
    font-weight:700;
    color:#fff;


}

.pupa-map-title span{

    display:block;

    margin-top:4px;

    font-size:13px;

    opacity:.9;

}

/* Arama kutusu */

.pupa-search{

    position:absolute;

    left:60px;

    top:92px;

    z-index:999;

    width:260px;

    background:white;

    border-radius:10px;

    overflow:hidden;

    box-shadow:0 2px 10px rgba(0,0,0,.25);

}

.pupa-search input{

    width:100%;

    padding:11px 14px;

    border:none;

    outline:none;

    font-size:14px;

}

.pupa-search-results{

    display:none;

    max-height:260px;

    overflow-y:auto;

    border-top:1px solid #ddd;

}

.pupa-search-item{

    padding:10px 12px;

    cursor:pointer;

    transition:.2s;

}

.pupa-search-item:hover{

    background:#edf6ff;

}

/* Popup */

.pupa-popup{

    min-width:240px;

    max-width:320px;

    font-family:Arial,Helvetica,sans-serif;

}

.pupa-popup-title{

    background:#0a5b9d;

    color:white;

    padding:11px 14px;

    font-size:16px;

    font-weight:bold;

    border-radius:10px 10px 0 0;

}

.pupa-popup-content{

    background:white;

    padding:14px;

    border:1px solid #d9d9d9;

    border-top:none;

    border-radius:0 0 10px 10px;

    font-size:13px;

    line-height:1.55;

}

/* Leaflet */

.leaflet-control-zoom{

    margin-top:120px !important;

}

.leaflet-control-fullscreen{

    margin-top:8px;

}

.leaflet-popup-content{

    margin:0 !important;

}

.leaflet-popup-content-wrapper{

    padding:0;

    overflow:hidden;

    border-radius:10px;

}

/* Konum butonu */

.pupa-locate{

    position:absolute;

    left:12px;

    top:160px;

    z-index:999;

    width:36px;

    height:36px;

    background:white;

    border-radius:4px;

    cursor:pointer;

    text-align:center;

    line-height:36px;

    box-shadow:0 2px 8px rgba(0,0,0,.3);

    user-select:none;

}

/* Mobil */

@media(max-width:768px){

.pupa-map-container{

height:650px;

}

.pupa-map-title{

width:calc(100% - 90px);

padding:10px;

}

.pupa-map-title h2{

font-size:18px;

}

.pupa-map-title span{

font-size:12px;

}

.pupa-search{

left:55px;

right:12px;

width:auto;

top:110px;

}

.pupa-locate{

top:170px;

}

.leaflet-top.leaflet-right{

top:86px;

}

}

/* Marker Cluster (ileride kullanacağız) */

.marker-cluster-small{

background:#4da3ff;

}

.marker-cluster-medium{

background:#2678d7;

}

.marker-cluster-large{

background:#004d99;

}