/* style.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#container {
  text-align: center;
  max-width: 640px;
  width: 100%;
}

h1 {
  margin-bottom: 10px;
}

#exercise-select {
  margin-bottom: 20px;
  padding: 10px;
  font-size: 16px;
}

video {
  display: none;
}

canvas {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #ffffff; /* White background for canvas when video feed is hidden */
}

#status, #rep-count, #progress {
  margin-top: 10px;
  font-size: 18px;
  color: #333;
}