#map {
            width: 100%;
            height: 500px;
            border-bottom: 3px solid #ddd;
            overflow: hidden;
            border-radius: 15px;
            position: relative;
            z-index: 1;
            margin-top: 15px;
        }

        .stops-section {
            margin: 0 auto;
            padding: 30px 0px;
        }

        .stops-header {
            display: flex;
            /* align-items: center; */
            gap: 10px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e0e0e0;
        }

        .stops-header h2 {
            font-size: 24px;
            color: #333;
            margin: 0;
            padding-bottom: 0;
        }

        .stops-icon {
            font-size: 28px;
        }

        .stops-list {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            overflow: hidden;
            overflow-y: scroll;
            height: 250px;
        }

        .stop-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 25px;
            border-bottom: 1px solid #e8e8e8;
            transition: background 0.2s ease;
            cursor: pointer;
        }

        .stop-item:last-child {
            border-bottom: none;
        }

        .stop-item:hover {
            background: #f9f9f9;
        }

        .stop-item.active {
            background: #fff9e6;
        }

        .stop-left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 1;
        }

        .stop-number {
            width: 40px;
            height: 40px;
            background: #ffd700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            color: #000;
            flex-shrink: 0;
        }

        .stop-info {
            flex: 1;
        }

        .stop-title {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 5px;
        }

        .stop-coords {
            font-size: 13px;
            color: #666;
            font-family: monospace;
        }

        .view-btn {
            background: #ffd700;
            color: #000;
            border: none;
            padding: 10px 25px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .view-btn:hover {
            background: #ffed4e;
            transform: translateY(-1px);
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
        }

        .custom-marker {
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            color: #000;
            border: 3px solid white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
            cursor: pointer;
            transition: transform 0.2s;
        }

        .custom-marker:hover {
            transform: scale(1.1);
        }

        .custom-marker.landmark {
            background: #ffd700;
        }

        .custom-marker.activity {
            background: #4fc3f7;
        }

        .leaflet-popup-content-wrapper {
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .popup-content {
            padding: 15px;
            min-width: 220px;
        }

        .popup-content h3 {
            margin: 0 0 10px 0;
            color: #1a1a1a;
            font-size: 16px;
            line-height: 1.4;
        }

        .popup-content .popup-type {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .popup-content .popup-type.landmark {
            background: #ffd700;
            color: #000;
        }

        .popup-content .popup-type.activity {
            background: #4fc3f7;
            color: #000;
        }

        .popup-content p {
            margin: 5px 0 0 0;
            color: #666;
            font-size: 13px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            #map {
                height: 400px;
            }

            .stop-item {
                padding: 15px;
            }

            .stop-number {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .stop-title {
                font-size: 15px;
            }

            .view-btn {
                padding: 8px 20px;
                font-size: 13px;
            }
        }