.asam-wrapper,
.asam-wrapper *{
    box-sizing:border-box;
}
.asam-wrapper{
    display:flex;
    gap:30px;
    align-items:stretch;
    width:100%;
}
.asam-map{
    flex:1;
    width:100%;
    min-width:300px;
    height:650px;
    min-height:650px;
    position:relative;
    background:#f3f3f3;
    border-radius:18px;
    box-shadow:0 10px 40px rgba(0,0,0,.10);
}
.leaflet-container{
    width:100% !important;
    height:100% !important;
}
.asam-sidebar{
    flex:0 0 360px;
    max-width:360px;
    background:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    overflow-y:auto;
    max-height:650px;
}
.asam-county{
    margin-bottom:30px;
}
.asam-county:last-child{
    margin-bottom:0;
}
.asam-county-title{
    font-size:22px;
    font-weight:700;
    color:#222;
    margin-bottom:18px;
}

/* Cities */
.asam-city-list{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.asam-city-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 18px;
    border-radius:12px;
    background:#f7f7f7;
    cursor:pointer;
    transition:.25s ease;
    font-size:16px;
    font-weight:500;
}

.asam-city-item:hover{
    background:#eef8e8;
    transform:translateX(4px);
}

.asam-city-item.active{
    background:#6DBE45;
    color:#fff;
    box-shadow:0 8px 20px rgba(109,190,69,.35);
}

.asam-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#6DBE45;
    flex:none;
}

.asam-city-item.active .asam-dot{
    background:#fff;
}

/* Popup */
.asam-popup{
    min-width:220px;
}

.asam-popup-title{
    margin:0 0 8px;
    font-size:18px;
    font-weight:700;
}

.asam-popup-title a{
    color:#6DBE45;
    text-decoration:none;
}

.asam-popup-title a:hover{
    text-decoration:underline;
}

.asam-popup-description{
    color:#666;
    line-height:1.6;
    font-size:14px;
}

/* Leaflet */
.leaflet-container{
    width:100%;
    height:100%;
    font-family:inherit;
}

.leaflet-popup-content{
    margin:15px;
}

/* Scrollbar */
.asam-sidebar::-webkit-scrollbar{
    width:7px;
}

.asam-sidebar::-webkit-scrollbar-thumb{
    background:#6DBE45;
    border-radius:10px;
}

.asam-sidebar::-webkit-scrollbar-track{
    background:#eee;
}

/* Tablet */
@media (max-width:1024px){

    .asam-wrapper{
        flex-direction:column;
    }

    .asam-map{
        order:1;
        width:100%;
        height:500px;
    }

    .asam-sidebar{
        order:2;
        max-width:100%;
        flex:none;
        width:100%;
        max-height:none;
    }

}

/* Mobile */
@media (max-width:767px){

    .asam-wrapper{
        gap:20px;
    }

    .asam-map{
        height:350px;
        min-height:350px;
        border-radius:12px;
    }

    .asam-sidebar{
        padding:18px;
        border-radius:12px;
    }

    .asam-county-title{
        font-size:20px;
    }

    .asam-city-item{
        padding:12px 14px;
        font-size:15px;
    }

}

/* Small Phones */
@media (max-width:480px){

    .asam-map{
        height:300px;
        min-height:300px;
    }

    .asam-city-item{
        font-size:14px;
        padding:12px;
    }

}