/* Reset Route */
#resetBtn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #ff4444;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* Show JSON */
#jsonBtn {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #007bff;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* JSON Output Panel */
#jsonOutput {
  display: none;
  position: absolute;
  bottom: 60px;
  left: 10px;
  background: white;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 12px;
  width: 300px;
  height: 200px;
  overflow: auto;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
