@charset "UTF-8";
/*MAP*/
.map-container {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 15px 30px -10px rgba(0,40,60,0.15);
    border: 1px solid #e9edf2;
    background: #e2e8f0;
    height: 500px;
    position: relative;
}
#marketMap {
    height: 100%;
    width: 100%;
    background: #e2e8f0;
    z-index: 1;
}
.trend-up { color: #2e7d32; font-weight: 600; }
        .trend-down { color: #c62828; font-weight: 600; }
        .trend-stable { color: #b45f06; font-weight: 600; }
.price-movement-down { color: #2e7d32; font-weight: 600; }  /* decrease = green */
        .price-movement-up { color: #c62828; font-weight: 600; }    /* increase = red */
.city-tooltip {
    font-weight: 500;
}
.leaflet-popup-content {
    font-family: 'Inter', sans-serif;
}
.leaflet-container img {
    max-width: none !important;
}
#marketMapWrapper {
    overflow: visible !important;
}


/* Custom markers with white background and border */
.custom-marker {
    background: transparent;
    border: none;
}

.market-marker {
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.1s;
}

.market-marker:hover {
    transform: scale(1.1);
    z-index: 1000;
}

/* Ensure the icon is centered */
.market-marker i {
    display: block;
    line-height: 1;
    text-align: center;
}
.stat-widget {
    background: white;
    border-radius: 1.25rem;
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0,20,30,0.04);
    border: 1px solid #edf2f7;
    transition: transform 0.15s;
    height: 100%;
}