body {
  margin: 0;
  font-family: sans-serif;
  background: #f8f9fa;
  color: #222;
  text-align: center;
}

#wheremi-wrapper {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

header h1 {
  margin: 0 0 5px;
  font-size: 1.6em;
}

#map {
  height: 300px;
  margin: 15px 0;
  border: 1px solid #ccc;
}

#buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0;
}

.btn {
  padding: 12px;
  font-size: 1.1em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: white;
}

.red { background: #e74c3c; }
.yellow { background: #f39c12; }
.gray { background: #7f8c8d; }
.pink { background: #d63384; }

#taxiTitle {
  margin-top: 20px;
  font-size: 1.2em;
}

#taxiList {
  list-style: none;
  padding: 0;
  text-align: left;
}

#taxiList li {
  background: #f1f1f1;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 0.95em;
}

a {
  color: #007bff;
  text-decoration: none;
}