body {
  background-color: rgb(34, 32, 32);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100dvh;
  margin: 0;
}

.promptrText {
  position: absolute; /* take it out of flex flow */
  top: 20px; /* distance from top */
  left: 20px; /* distance from left */
  user-select: none;
}

.vid {
  border: 1px solid red;
  display: none;
}

.promptrText h1 {
  color: white;
  font-family: sans-serif;
  font-size: 35px;
  margin: 0; /* reset default margins */
}

.addPage {
  color: white;
  font-size: 180px;
}

.tapInstruction {
  color: white;
  font-family: sans-serif;
  font-size: 20px;
  position: relative;
  top: -40px;
}
#uploadOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

#uploadCard {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 200px;
}

#spinnerRing {
  width: 48px;
  height: 48px;
  border: 4px solid #2a2a2a;
  border-top-color: #4f8ef7;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#uploadLabel {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  font-family: Arial, sans-serif;
}

#progressTrack {
  width: 180px;
  height: 4px;
  background: #2a2a2a;
  border-radius: 99px;
  overflow: hidden;
}

#progressBar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2dee06, #02f029);
  border-radius: 99px;
  transition: width 0.2s ease;
}

#uploadPercent {
  color: #888888;
  font-size: 13px;
  margin: 0;
  font-family: Arial, sans-serif;
}
