body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #202020;
  color: white;
}

.container {
  display: flex;
  flex-direction: row;
  height: 100vh;
  padding: 10px;
}

.video-container {
  position: relative;
  flex: 3;
}

.input_video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.output_canvas {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: auto;
}

.results-container {
  flex: 1;
  margin-left: 20px;
  overflow-y: auto;
}

#matched-list {
  list-style: none;
  padding: 0;
}

#matched-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  background: #333;
  padding: 10px;
  border-radius: 6px;
}

#matched-list img {
  border-radius: 30%;
  margin-right: 10px;
  height: 120px;
  width: 90px;
  object-fit: cover;
}

