body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  padding: 20px;
  background-color: #f4f4f4;
  color: #333;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
}

#webcam-container {
  display: inline-block;
  margin-top: 20px;
  border: 4px solid #007bff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#webcam-container canvas {
  width: 100%;
  height: auto;
}

#label-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

#label-container div {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.2em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#output {
  margin-top: 30px;
  font-size: 1.5em;
  font-weight: bold;
  color: #28a745;
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1.2em;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:hover {
  background-color: #0056b3;
}
