/*!***************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/app/capture/page.module.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************/
/**
 * /capture page styles
 * 
 * Simplified styles for the capture page.
 */

.page_page__cSPSD {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--color-black);
}

.page_viewerShell__4eFzj {
  position: relative;
  width: 100%;
  height: 100%;
}

.page_cameraStage__iIMe1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
}

.page_cameraView__yef9c {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page_cameraStatus__KdzDt {
  text-align: center;
  color: var(--color-cream);
}

.page_cameraStatusRequesting__5AdA8 {
  color: var(--color-blue);
}

.page_cameraStatusError__XUqev {
  color: hsl(var(--destructive));
}

.page_cameraStatusIdle__JlHB3 {
  color: rgba(249, 244, 238, 0.9);
}

.page_cameraStatusIcon__itKZ1 {
  margin-bottom: 16px;
}

.page_cameraStatusHint__k92Ka {
  font-size: 0.8em;
  color: rgba(249, 244, 238, 0.6);
  margin-top: 8px;
}

.page_cameraIdleTitle__1BdHJ {
  font-size: 20px;
  margin-bottom: 12px;
}

.page_cameraIdleSubtitle__sSOR6 {
  font-size: 14px;
  color: rgba(249, 244, 238, 0.7);
}

/* Idle screen before camera starts */
.page_idleScreen__dH7B8 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(0, 51, 98, 0.92) 0%, rgba(0, 0, 0, 0.95) 70%);
}

.page_idleContent__CWPfL {
  text-align: center;
  color: var(--color-cream);
  padding: 40px;
  max-width: 400px;
}

.page_idleIcon__tbEpx {
  font-size: 64px;
  display: block;
  margin-bottom: 24px;
  animation: page_pulse__ZIuKD 2s ease-in-out infinite;
}

@keyframes page_pulse__ZIuKD {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

.page_idleTitle__KylcK {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 16px;
}

.page_idleText__ULD0r {
  font-size: 16px;
  color: rgba(249, 244, 238, 0.7);
  margin: 0 0 12px;
  line-height: 1.5;
}

.page_idleHint__QQpXp {
  font-size: 13px;
  color: rgba(249, 244, 238, 0.7);
  margin: 0;
  padding: 8px 16px;
  background: rgba(0, 51, 98, 0.25);
  border-radius: 16px;
  display: inline-block;
}

/* Interface layer */
.page_interfaceLayer__m8hhG {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
}

.page_layoutGrid__9Q_jZ {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 3.8fr) minmax(0, 1.1fr);
  padding: clamp(12px, 2vw, 20px);
  gap: clamp(12px, 3vw, 28px);
  pointer-events: none;
}

.page_columnLeft__MawGo,
.page_columnCenter__cXUkj,
.page_columnRight__jtoLJ {
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.page_columnLeft__MawGo {
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}

.page_columnCenter__cXUkj {
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 2vh, 16px);
}

.page_columnRight__jtoLJ {
  justify-content: space-between;
  align-items: flex-end;
}

.page_columnLeft__MawGo > *,
.page_columnCenter__cXUkj > *,
.page_columnRight__jtoLJ > * {
  pointer-events: auto;
}

/* Icon buttons */
.page_iconButton__QxjbC {
  width: clamp(52px, 6vw, 60px);
  height: clamp(52px, 6vw, 60px);
  border-radius: clamp(14px, 2vw, 18px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(249, 244, 238, 0.98);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page_iconButton__QxjbC:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.page_iconButton__QxjbC:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page_iconButton__QxjbC:focus-visible {
  outline: 2px solid rgba(0, 51, 98, 0.4);
  outline-offset: 3px;
}

.page_iconButton__QxjbC svg {
  width: clamp(22px, 3vw, 28px);
  height: clamp(22px, 3vw, 28px);
  color: var(--color-black);
}

.page_settingsIcon__Fi3dT {
  stroke: var(--color-black);
}

.page_streamButtonActive__0X1Sa {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(255, 235, 235, 0.96);
}

.page_playIcon__FHgwH {
  color: var(--color-blue);
}

.page_stopIcon__Y6p9X {
  color: hsl(var(--destructive));
}

.page_captureButtons__UDiao {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}

.page_shotButton__fAF8G,
.page_skipButton__WoQR5,
.page_stopButton__SoF51 {
  min-width: clamp(72px, 8vw, 96px);
  height: 40px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(249, 244, 238, 0.96);
  color: var(--color-black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page_shotButton__fAF8G:hover,
.page_skipButton__WoQR5:hover {
  border-color: rgba(0, 51, 98, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.page_stopButton__SoF51 {
  border-color: rgba(0, 51, 98, 0.6);
  background: var(--color-blue);
  color: var(--color-cream);
}

.page_stopButton__SoF51:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 51, 98, 0.3);
}

/* Notification bar */
.page_notificationBar__cdx7v {
  width: min(100%, 840px);
  padding: clamp(2px, 0.5vw, 6px) clamp(6px, 1.4vw, 12px);
  border-radius: clamp(14px, 2.6vw, 20px);
  background: rgba(249, 244, 238, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.page_notificationContent___Epxw {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.page_notificationBadge__i7W_0 {
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.page_notificationPitch___l7GS {
  opacity: 0.6;
  margin-left: 4px;
}
.page_phaseTag__J0a_L {
  font-size: clamp(7px, 0.8vw, 9px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
}

.page_notificationMessage__mMbmA {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.3;
}

.page_notificationSecondary__hyuFA {
  margin: 2px 0 0;
  font-size: clamp(12px, 1.6vw, 14px);
  font-weight: 500;
  color: rgba(0, 0, 0, 0.55);
}

/* Deviation warning styles */
.page_notificationWarning__xUQHe {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.12) 100%);
  border-color: rgba(255, 152, 0, 0.4);
  animation: page_warningPulse__tj3r_ 0.8s ease-in-out infinite alternate;
}

.page_notificationError__aYZUt {
  background: linear-gradient(135deg, rgba(244, 67, 54, 0.18) 0%, rgba(198, 40, 40, 0.14) 100%);
  border-color: rgba(244, 67, 54, 0.5);
  animation: page_errorPulse__WY9TF 0.5s ease-in-out infinite alternate;
}

.page_notificationMessageWarning__bxuzu {
  color: #e65100;
}

.page_notificationMessageError__C_Un6 {
  color: #c62828;
}

@keyframes page_warningPulse__tj3r_ {
  from { transform: scale(1); box-shadow: 0 10px 24px rgba(255, 152, 0, 0.2); }
  to { transform: scale(1.01); box-shadow: 0 12px 28px rgba(255, 152, 0, 0.35); }
}

@keyframes page_errorPulse__WY9TF {
  from { transform: scale(1); box-shadow: 0 10px 24px rgba(244, 67, 54, 0.25); }
  to { transform: scale(1.02); box-shadow: 0 14px 32px rgba(244, 67, 54, 0.4); }
}

/* Badges */
.page_badgeCapture__ko7Lj {
  background: rgba(0, 51, 98, 0.12);
  color: var(--color-blue);
  padding: 2px 8px;
  border-radius: 8px;
}

.page_badgeIdle__87NH7 {
  background: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.7);
  padding: 2px 8px;
  border-radius: 8px;
}

/* Phone tilt animation container */
.page_phoneTiltContainer__BGpLe {
  /* Position in center column - between notification bar and bottom */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* Limit height to prevent overlap with notification bar */
  max-height: 40vh;
  min-height: 120px;
  margin: clamp(16px, 8vh, 96px) 0 12px;
  overflow: visible;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .page_layoutGrid__9Q_jZ {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }
  
  .page_notificationBar__cdx7v {
    width: 95%;
    padding: 10px 16px;
  }
  
  .page_iconButton__QxjbC {
    width: 52px;
    height: 52px;
  }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .page_columnCenter__cXUkj {
    gap: 4px;
    justify-content: flex-start;
    padding-top: 8px;
  }
  
  .page_phoneTiltContainer__BGpLe {
    max-height: 24vh;
    min-height: 80px;
    margin: 8px 0 8px;
    overflow: visible;
  }
  
  .page_notificationBar__cdx7v {
    padding: 6px 16px;
  }
  
  .page_notificationMessage__mMbmA {
    font-size: 16px;
  }
}

/*!********************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/app/capture/components/DirectionChoiceOverlay.module.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************************************/
/**
 * DirectionChoiceOverlay.module.css
 * 
 * Styles for the direction selection overlay.
 * Brand Colors: Cream (#F9F4EE), Black (#000000), Blue (#003362)
 */

.DirectionChoiceOverlay_overlay__dmBfC {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  animation: DirectionChoiceOverlay_fadeIn__wI1al 0.3s ease-out;
}

@keyframes DirectionChoiceOverlay_fadeIn__wI1al {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.DirectionChoiceOverlay_content__971qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem;
  max-width: 90vw;
  text-align: center;
}

.DirectionChoiceOverlay_header__qZNej {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.DirectionChoiceOverlay_title__4tnxf {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-cream, #F9F4EE);
  letter-spacing: 0.02em;
}

/* Direction buttons */
.DirectionChoiceOverlay_buttons__n4U__ {
  display: flex;
  gap: 1.5rem;
}

.DirectionChoiceOverlay_directionButton__kII35 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 60px;
  border: 2px solid var(--color-cream, #F9F4EE);
  border-radius: 12px;
  background: transparent;
  color: var(--color-cream, #F9F4EE);
  cursor: pointer;
  transition: all 0.2s ease;
}

.DirectionChoiceOverlay_directionButton__kII35:hover {
  background: rgba(249, 244, 238, 0.15);
  transform: scale(1.03);
}

.DirectionChoiceOverlay_directionButton__kII35:active {
  transform: scale(0.98);
}

.DirectionChoiceOverlay_leftButton__LIaGW:hover,
.DirectionChoiceOverlay_rightButton___lvd7:hover {
  border-color: var(--color-cream, #F9F4EE);
  box-shadow: 0 0 20px rgba(249, 244, 238, 0.2);
}

.DirectionChoiceOverlay_label__gq1D_ {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Countdown state */
.DirectionChoiceOverlay_countdown__8APHZ {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: DirectionChoiceOverlay_scaleIn__1kltb 0.3s ease-out;
}

@keyframes DirectionChoiceOverlay_scaleIn__1kltb {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.DirectionChoiceOverlay_selectedDirection__USe4d {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(249, 244, 238, 0.1);
  border: 1px solid rgba(249, 244, 238, 0.3);
  border-radius: 12px;
}

.DirectionChoiceOverlay_selectedLabel__ikfQK {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-cream, #F9F4EE);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.DirectionChoiceOverlay_countdownNumber__2365u {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-cream, #F9F4EE);
  line-height: 1;
  animation: DirectionChoiceOverlay_pulse__aVHJU 1s ease-in-out infinite;
}

@keyframes DirectionChoiceOverlay_pulse__aVHJU {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.DirectionChoiceOverlay_countdownText__Cf5dg {
  margin: 0;
  font-size: 1rem;
  color: rgba(249, 244, 238, 0.6);
}

/* Cancel button */
.DirectionChoiceOverlay_cancelButton__raqD4 {
  margin-top: 0.5rem;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(249, 244, 238, 0.3);
  border-radius: 10px;
  background: transparent;
  color: rgba(249, 244, 238, 0.6);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.DirectionChoiceOverlay_cancelButton__raqD4:hover {
  border-color: rgba(249, 244, 238, 0.5);
  color: var(--color-cream, #F9F4EE);
}

/*!******************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/app/capture/components/CaptureSettingsPanel.module.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************************/
/**
 * CaptureSettingsPanel.module.css
 * 
 * Styles for the capture settings panel.
 * Brand Colors: Cream (#F9F4EE), Black (#000000), Blue (#003362)
 */

.CaptureSettingsPanel_overlay__tctAv {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  backdrop-filter: blur(4px);
}

.CaptureSettingsPanel_panel__O3zE_ {
  background: var(--color-cream, #F9F4EE);
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.CaptureSettingsPanel_header__5Jjz9 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.CaptureSettingsPanel_title__T9vOM {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-black, #000000);
  margin: 0;
}

.CaptureSettingsPanel_saveButton__n2Peb {
  padding: 8px 16px;
  border: none;
  background: var(--color-blue, #003362);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-cream, #F9F4EE);
  transition: background 0.2s;
}

.CaptureSettingsPanel_saveButton__n2Peb:hover {
  background: rgba(0, 51, 98, 0.85);
}

.CaptureSettingsPanel_content__IPFMf {
  padding: 16px 24px 24px;
  overflow-y: auto;
  flex: 1;
}

.CaptureSettingsPanel_section__AB5Hi {
  margin-bottom: 24px;
}

.CaptureSettingsPanel_section__AB5Hi:last-child {
  margin-bottom: 0;
}

.CaptureSettingsPanel_sectionTitle__B_xjQ {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.5);
  margin: 0 0 12px;
}

.CaptureSettingsPanel_toggleRow__cZMfE {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.CaptureSettingsPanel_toggleRow__cZMfE:last-child {
  border-bottom: none;
}

.CaptureSettingsPanel_label___Q3dM {
  font-size: 15px;
  color: var(--color-black, #000000);
}

.CaptureSettingsPanel_unavailable__ZyLB_ {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}

/* Toggle switch */
.CaptureSettingsPanel_toggle__aQLhD {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 48px;
  height: 28px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}

.CaptureSettingsPanel_toggle__aQLhD::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.CaptureSettingsPanel_toggle__aQLhD:checked {
  background: var(--color-blue, #003362);
}

.CaptureSettingsPanel_toggle__aQLhD:checked::before {
  transform: translateX(20px);
}

.CaptureSettingsPanel_toggle__aQLhD:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Quality buttons */
.CaptureSettingsPanel_qualityGrid__lcgjw {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.CaptureSettingsPanel_qualityButton__yJOPf {
  padding: 12px 8px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  background: rgba(249, 244, 238, 0.9);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: all 0.2s;
}

.CaptureSettingsPanel_qualityButton__yJOPf:hover {
  border-color: var(--color-blue, #003362);
  color: var(--color-blue, #003362);
}

.CaptureSettingsPanel_qualityActive__wseOi {
  border-color: var(--color-blue, #003362);
  background: rgba(0, 51, 98, 0.1);
  color: var(--color-blue, #003362);
}

.CaptureSettingsPanel_qualityHint__0Y8xm {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  margin: 8px 0 0;
}

/* Capture mode buttons */
.CaptureSettingsPanel_modeGrid__0ZAzr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.CaptureSettingsPanel_modeButton__8RH5c {
  padding: 16px;
  border: 2px solid rgba(0, 0, 0, 0.12);
  background: rgba(249, 244, 238, 0.9);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.CaptureSettingsPanel_modeButton__8RH5c:hover {
  border-color: var(--color-blue, #003362);
}

.CaptureSettingsPanel_modeActive__2D74h {
  border-color: var(--color-blue, #003362);
  background: rgba(0, 51, 98, 0.08);
}

.CaptureSettingsPanel_modeIcon__kthNz {
  font-size: 24px;
}

.CaptureSettingsPanel_modeLabel__MizPP {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black, #000000);
}

.CaptureSettingsPanel_modeDesc__CfDe4 {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}

.CaptureSettingsPanel_modeActive__2D74h .CaptureSettingsPanel_modeLabel__MizPP {
  color: var(--color-blue, #003362);
}

/* Advanced settings */
.CaptureSettingsPanel_advancedToggle__oyG2n {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.CaptureSettingsPanel_advancedToggle__oyG2n:hover {
  color: var(--color-blue, #003362);
}

.CaptureSettingsPanel_chevron__LRoov {
  font-size: 10px;
}

.CaptureSettingsPanel_advancedContent__ainJ4 {
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.CaptureSettingsPanel_selectRow__ccWGU {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.CaptureSettingsPanel_select__kRGTd {
  padding: 8px 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  font-size: 14px;
  color: var(--color-black, #000000);
  background: rgba(249, 244, 238, 0.9);
  min-width: 120px;
}

.CaptureSettingsPanel_sliderRow__iVBOA {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.CaptureSettingsPanel_sliderRow__iVBOA .CaptureSettingsPanel_label___Q3dM {
  flex: 0 0 auto;
}

.CaptureSettingsPanel_slider__kAoZl {
  flex: 1;
  height: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}

.CaptureSettingsPanel_slider__kAoZl::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--color-blue, #003362);
  border-radius: 50%;
  cursor: pointer;
}

.CaptureSettingsPanel_sliderValue__vksib {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.55);
  min-width: 36px;
  text-align: right;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .CaptureSettingsPanel_panel__O3zE_ {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .CaptureSettingsPanel_qualityGrid__lcgjw {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*!*****************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/app/capture/components/CapturePreviewPopup.module.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************/
/**
 * CapturePreviewPopup.module.css
 *
 * Styles for the capture preview popup gallery.
 * Uses brand palette (cream/black/blue).
 */

.CapturePreviewPopup_overlay__3pY_D {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.CapturePreviewPopup_popup__R8lcX {
  background: rgba(249, 244, 238, 0.98);
  border-radius: 20px;
  max-width: 960px;
  max-height: 90vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.CapturePreviewPopup_header__h1F6Y {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.CapturePreviewPopup_title__teaxa {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-black);
}

.CapturePreviewPopup_closeButton__opT5l {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 10px;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.CapturePreviewPopup_closeButton__opT5l:hover {
  color: var(--color-black);
  border-color: rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.CapturePreviewPopup_grid__uoiQu {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  padding: 16px 20px;
  overflow-y: auto;
  max-height: 40vh;
}

.CapturePreviewPopup_thumbnail__7WpZN {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.12);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  background: rgba(0, 0, 0, 0.05);
}

.CapturePreviewPopup_thumbnail__7WpZN:hover {
  border-color: rgba(0, 51, 98, 0.5);
  transform: scale(1.02);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.CapturePreviewPopup_thumbnailSelected__6CCRG {
  border-color: var(--color-blue);
  box-shadow: 0 12px 28px rgba(0, 51, 98, 0.25);
}

.CapturePreviewPopup_thumbImage__mfEvw {
  -o-object-fit: cover;
     object-fit: cover;
}

.CapturePreviewPopup_thumbInfo__cYIYF {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  padding: 4px 6px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--color-cream);
}

.CapturePreviewPopup_detail__k8ZAi {
  display: flex;
  gap: 18px;
  padding: 18px 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 51, 98, 0.05);
}

.CapturePreviewPopup_detailImageWrap__7KxUf {
  position: relative;
  width: 220px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.08);
}

.CapturePreviewPopup_detailImage__W6U9N {
  -o-object-fit: cover;
     object-fit: cover;
}

.CapturePreviewPopup_detailInfo__sKqCf {
  flex: 1;
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
}

.CapturePreviewPopup_detailInfo__sKqCf p {
  margin: 4px 0;
}

.CapturePreviewPopup_detailInfo__sKqCf strong {
  color: var(--color-black);
}

.CapturePreviewPopup_footer__1XDQB {
  display: flex;
  justify-content: center;
  padding: 16px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.CapturePreviewPopup_doneButton__MwcFs {
  background: var(--color-blue);
  color: var(--color-cream);
  border: none;
  padding: 12px 32px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.CapturePreviewPopup_doneButton__MwcFs:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 51, 98, 0.25);
  background: rgba(0, 51, 98, 0.9);
}

/* Landscape mode adjustments */
@media (orientation: landscape) {
  .CapturePreviewPopup_popup__R8lcX {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .CapturePreviewPopup_header__h1F6Y {
    width: 100%;
  }

  .CapturePreviewPopup_grid__uoiQu {
    flex: 1;
    max-height: 60vh;
  }

  .CapturePreviewPopup_detail__k8ZAi {
    width: 100%;
  }
}

/*!********************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/app/capture/components/CameraView.module.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************************/
.CameraView_container__QwGUb {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
  overflow: hidden;
}

.CameraView_videoContainer__q7h7x {
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0;
  overflow: hidden;
}

.CameraView_placeholder__2z6HO {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 51, 98, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%);
  color: rgba(249, 244, 238, 0.7);
}

.CameraView_placeholderIcon__P9EXW {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.5;
}

.CameraView_placeholderText__mSkC6 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.CameraView_overlay__vvICW {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.CameraView_overlay__vvICW > * {
  pointer-events: auto;
}

/*!*********************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/app/capture/components/CoverageMap.module.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************/
.CoverageMap_container__Iplvo {
  /* Positioned by parent flex layout - no absolute positioning */
  margin-top: auto;  /* Push to bottom of flex column */
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 12px;
  min-width: 180px;
  backdrop-filter: blur(12px);
  z-index: 15;
}

.CoverageMap_header__hRuYQ {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.CoverageMap_title__lPknm {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.CoverageMap_progress__fraCT {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.9);
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
}

.CoverageMap_grid__AE68M {
  display: grid;
  /* grid-template-columns set inline based on numWaypoints */
  gap: 3px;
}

.CoverageMap_cornerCell__up_go {
  width: 20px;
}

.CoverageMap_headerCell__hHHPW {
  font-size: 9px;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.CoverageMap_rowLabel__vL1CJ {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 4px;
  color: rgba(0, 0, 0, 0.6);
}

.CoverageMap_cell__sezcg {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.15s ease;
}

.CoverageMap_cellEmpty__MmQ6O {
  background: rgba(0, 0, 0, 0.02);
  color: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.CoverageMap_cellFilled__mke_L {
  background: rgba(0, 0, 0, 0.85);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.9);
}

.CoverageMap_cellSkipped__C_aj7 {
  background: rgba(255, 180, 0, 0.15);
  color: rgba(180, 140, 0, 0.9);
  border: 1px solid rgba(255, 180, 0, 0.4);
}

.CoverageMap_cellCurrent__vCwSa {
  background: rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.4);
  animation: CoverageMap_currentPulse__g4Z01 1.2s ease-in-out infinite;
}

@keyframes CoverageMap_currentPulse__g4Z01 {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.CoverageMap_targetInfo__W7nrO {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 11px;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
}

.CoverageMap_targetAngles__JrruP {
  display: block;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 2px;
  font-family: monospace;
}

/* Proposed waypoint styles (lighter, indicating optional) */
.CoverageMap_headerProposed__Jvbc6 {
  color: rgba(0, 0, 0, 0.35);
  font-style: italic;
}

.CoverageMap_cellProposed__2i512 {
  opacity: 0.5;
  border-style: dashed !important;
}

.CoverageMap_proposedHint__PhzxJ {
  margin-top: 8px;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
  font-style: italic;
}

/*!***********************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/app/capture/components/ParallaxMeter.module.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************/
.ParallaxMeter_container__uVV_M {
  position: absolute;
  bottom: 10px; /* Lower to align with buttons */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  z-index: 15;
  transition: all 0.2s ease;
}

.ParallaxMeter_container__uVV_M[data-ready="true"] {
  background: rgba(80, 255, 120, 0.15);
}

.ParallaxMeter_gatesRow___kl_u {
  display: flex;
  gap: 6px;
}

.ParallaxMeter_dot__KT11z {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.15s ease;
}

.ParallaxMeter_dotOK__l15Vm {
  background: rgba(80, 255, 120, 0.9);
  box-shadow: 0 0 8px rgba(80, 255, 120, 0.5);
}

.ParallaxMeter_progressBar__bpJU6 {
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.ParallaxMeter_progressFill__wyRSh {
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.1s ease;
}

.ParallaxMeter_progressFill__wyRSh[data-ready="true"] {
  background: rgba(80, 255, 120, 0.8);
}

.ParallaxMeter_statusText__20tuG {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
  min-width: 44px;
}

/*!****************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/app/capture/components/PhoneTiltAnimation.module.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************************/
/**
 * PhoneTiltAnimation.module.css
 * 
 * Clean, minimal animations for landscape phone tilt/strafe illustration.
 * Smooth, deliberate movements with anticipation for natural feel.
 */

.PhoneTiltAnimation_container__rJdnm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
}

.PhoneTiltAnimation_container__rJdnm[data-direction="none"] {
  opacity: 0.2;
}

.PhoneTiltAnimation_phone__ubNwA {
  width: min(70vw, 320px);
  height: auto;
  aspect-ratio: 120 / 70;
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
}

/* Tilt UP animation - descend slightly, then tilt up (look at ceiling) */
.PhoneTiltAnimation_phone__ubNwA[data-direction="up"] {
  animation: PhoneTiltAnimation_tiltUp__Pt_fn 4s ease-in-out infinite;
}

/* Tilt DOWN animation - rise slightly, then tilt down (look at floor) */
.PhoneTiltAnimation_phone__ubNwA[data-direction="down"] {
  animation: PhoneTiltAnimation_tiltDown__pFD_B 4s ease-in-out infinite;
}

/* Strafe LEFT animation - smooth lateral movement (once, not looping aggressively) */
.PhoneTiltAnimation_phone__ubNwA[data-direction="left"] {
  animation: PhoneTiltAnimation_strafeLeft__w3fGz 3s ease-in-out infinite;
}

/* Strafe RIGHT animation - smooth lateral movement */
.PhoneTiltAnimation_phone__ubNwA[data-direction="right"] {
  animation: PhoneTiltAnimation_strafeRight__971Du 3s ease-in-out infinite;
}

.PhoneTiltAnimation_phone__ubNwA[data-direction="ready"] {
  animation: none;
}

.PhoneTiltAnimation_phone__ubNwA[data-direction="none"] {
  animation: none;
}

/* Tilt UP: phone tilts back to look UP (ceiling) - positive rotateX */
@keyframes PhoneTiltAnimation_tiltUp__Pt_fn {
  0% {
    transform: perspective(400px) translateY(0) rotateX(0deg);
  }
  20% {
    transform: perspective(400px) translateY(-8px) rotateX(0deg);
  }
  50% {
    transform: perspective(400px) translateY(2px) rotateX(18deg);
  }
  80% {
    transform: perspective(400px) translateY(-2px) rotateX(5deg);
  }
  100% {
    transform: perspective(400px) translateY(0) rotateX(0deg);
  }
}

/* Tilt DOWN: phone tilts forward to look DOWN (floor) - negative rotateX */
@keyframes PhoneTiltAnimation_tiltDown__pFD_B {
  0% {
    transform: perspective(400px) translateY(0) rotateX(0deg);
  }
  20% {
    transform: perspective(400px) translateY(8px) rotateX(0deg);
  }
  50% {
    transform: perspective(400px) translateY(-2px) rotateX(-18deg);
  }
  80% {
    transform: perspective(400px) translateY(2px) rotateX(-5deg);
  }
  100% {
    transform: perspective(400px) translateY(0) rotateX(0deg);
  }
}

/* Strafe LEFT: smooth lateral movement to indicate moving left */
@keyframes PhoneTiltAnimation_strafeLeft__w3fGz {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(-20px);
  }
  80% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Strafe RIGHT: smooth lateral movement to indicate moving right */
@keyframes PhoneTiltAnimation_strafeRight__971Du {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(20px);
  }
  80% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}

.PhoneTiltAnimation_phoneBody___IDRk {
  fill: transparent;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 1.5;
}

.PhoneTiltAnimation_screen__7RJ71 {
  fill: rgba(255, 255, 255, 0.03);
}

.PhoneTiltAnimation_camera__4x_Qp {
  fill: rgba(255, 255, 255, 0.25);
}

.PhoneTiltAnimation_arrowGroup__lSBBo {
  animation: PhoneTiltAnimation_arrowPulse__n__mo 1.5s ease-in-out infinite;
}

@keyframes PhoneTiltAnimation_arrowPulse__n__mo {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.95; }
}

.PhoneTiltAnimation_arrow__QkihP {
  fill: rgba(255, 255, 255, 0.7);
}

.PhoneTiltAnimation_checkGroup__z9eEE {
  animation: PhoneTiltAnimation_checkPulse__p7oKZ 1s ease-in-out infinite;
}

@keyframes PhoneTiltAnimation_checkPulse__p7oKZ {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.PhoneTiltAnimation_check__CdE1B {
  fill: none;
  stroke: rgba(80, 255, 120, 0.9);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.PhoneTiltAnimation_label__XjMbk {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

