* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #14181f;
}

#header {
  height: 64px;
  background: #14181f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 3px solid #ff6600;
}

#stop-name {
  font-size: 28px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #b7c0cc;
  flex-shrink: 0;
}

#status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #999;
  display: inline-block;
}

#status.ok #status-dot {
  background: #33cc66;
}

#status.error #status-dot {
  background: #e63946;
}

#map {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
}

.sip-stop-icon {
  background: #ff6600;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #ff6600;
}

.sip-vehicle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.5);
  white-space: nowrap;
  padding: 2px 6px;
}

.sip-vehicle-icon.bus {
  background: #1e88e5;
}

.sip-vehicle-icon.tram {
  background: #d81b60;
}

.leaflet-control-attribution {
  font-size: 10px;
}
