
body {
  margin: 0;
  background: #f27221;
  font-family: 'Segoe UI', sans-serif;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

.camera-container {
  position: relative;
}

video {
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
}

#emotion-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.3rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-radius: 12px;
  color: #ffffff;
}

#capture-btn {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f27221;
  color: #fff;
  border: none;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
}
