body {
  font-family: Arial, sans-serif;
  background: #1e1e1e;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.camera-container {
  text-align: center;
  background: #2c2c2c;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  max-width: 500px;
  width: 90%;
}

.video-wrapper {
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid #fff;
  display: inline-block;
}

video {
  width: 100%;
  transform-origin: center center;
  transition: transform 0.2s;
}

.controls {
  margin-top: 10px;
}

button, select, input[type="range"] {
  background: #ff4081;
  border: none;
  color: #fff;
  padding: 8px 12px;
  margin: 5px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover, select:hover, input[type="range"]:hover {
  background: #e73370;
}

#photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

#photos img {
  margin: 5px;
  max-width: 120px;
  border-radius: 6px;
  border: 2px solid #fff;
  cursor: pointer;
  transition: transform 0.2s;
}

#photos img:hover {
  transform: scale(1.1);
}
