@import"https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap";body{font-family:Inter,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}html,body,#root{height:100%}.mobile-scrollbar-hide::-webkit-scrollbar{display:none}.mobile-scrollbar-hide{-ms-overflow-style:none;scrollbar-width:none}input:not([type=password]),textarea{text-transform:uppercase}
/* Mobile-safe real file input overlay. Keep the input itself touchable. */
.upload-box {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #c8d2e0;
  border-radius: 10px;
  overflow: hidden;
  background: #f8fafc;
  cursor: pointer;
  touch-action: manipulation;
}

.upload-box.is-uploading {
  opacity: .65;
}

.upload-input-real {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9999;
  cursor: pointer;
  display: block;
  visibility: visible;
  pointer-events: auto;
}

.upload-ui {
  position: relative;
  z-index: 1;
  pointer-events: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #64748b;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.upload-ui svg {
  width: 32px;
  height: 32px;
}
