/* =========================================
   GLOBAL RESET
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
                 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
    overflow: hidden; /* Keep scrollbars off the map */
}

/* =========================================
   MAP CONTAINER
========================================= */
#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

/* =========================================
   MARKER ICON
========================================= */
.marker {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.marker:hover {
    transform: scale(1.1);
}

.marker-icon {
    width: 34px;
    height: 42px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

/* =========================================
   POPUP CONTAINER
========================================= */
.mapboxgl-popup {
    max-width: 340px;
}

.mapboxgl-popup-content {
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    overflow: hidden; /* Prevent text spill */
}

/* =========================================
   POPUP INNER CONTENT
========================================= */
.popup-content {
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.45;
    color: #222;
}

/* Popup Title */
.popup-content h3 {
    margin-bottom: 10px;
    font-size: 1
