
#capturedPhoto {
  margin-top: 1em;
  max-width: 480px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
}
#capturedPhoto:not([src]),
#capturedPhoto[src=""] {
  display: none;
}

.photo-container {
  opacity: 0;
  transition: opacity 0.5s ease;
  margin-top: 2em;
}

.photo-container.visible {
  opacity: 1;
}

.photo-container.hidden {
  display: none;
}

#capturedPhoto {
  max-width: 200px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

#timestamp {
  margin-top: 0.5em;
  font-size: 0.9rem;
  color: #555;
}

.pose-debug {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 4px;
  z-index: 10;
}

.pose-debug a {
  color: #fff;
}

html, body {
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-webkit-hyphens: auto;
}