.modal-content-camera {
  width: min(96vw, 720px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}

.modal-content-camera .modal-body {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.camera-stage {
  position: relative;
  width: 100%;
  background: #111;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

#camera-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111;
}

.camera-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap-md);
  flex-wrap: wrap;
}

.camera-controls #camera-capture {
  flex: 1 1 auto;
  min-width: 160px;
  padding: 14px 24px;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .camera-stage { aspect-ratio: 3 / 4; }
}
