/* [project]/app/components/FileUploader.module.css [app-client] (css) */
.FileUploader-module__8gzCXq__container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.FileUploader-module__8gzCXq__dropZone {
  background: var(--bg-glass);
  border: 2px dashed var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: center;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 2rem;
  transition: all .3s;
  display: flex;
}

.FileUploader-module__8gzCXq__dropZone:hover, .FileUploader-module__8gzCXq__dragging {
  border-color: var(--primary);
  background: #6366f11a;
}

.FileUploader-module__8gzCXq__iconWrapper {
  background: var(--bg-surface);
  width: 64px;
  height: 64px;
  color: var(--primary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
  box-shadow: 0 4px 12px #0003;
}

.FileUploader-module__8gzCXq__dropZone h3 {
  color: var(--text-main);
  font-size: 1.25rem;
}

.FileUploader-module__8gzCXq__dropZone p {
  color: var(--text-muted);
}

.FileUploader-module__8gzCXq__filePreview {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  display: flex;
  box-shadow: 0 4px 20px #0000004d;
}

.FileUploader-module__8gzCXq__fileIcon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  background: #6366f11a;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.FileUploader-module__8gzCXq__fileInfo {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.FileUploader-module__8gzCXq__fileName {
  color: var(--text-main);
  font-weight: 500;
}

.FileUploader-module__8gzCXq__fileSize {
  color: var(--text-muted);
  font-size: .875rem;
}

.FileUploader-module__8gzCXq__removeBtn {
  color: var(--text-muted);
  border-radius: 50%;
  padding: 8px;
  transition: all .2s;
}

.FileUploader-module__8gzCXq__removeBtn:hover {
  color: #ff4d4d;
  background: #ffffff1a;
}

/* [project]/app/dashboard/pdf-scan/pdf-scan.module.css [app-client] (css) */
.pdf-scan-module__yaBG4G__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.pdf-scan-module__yaBG4G__header {
  margin-bottom: 2rem;
}

.pdf-scan-module__yaBG4G__title {
  background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin-bottom: .5rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.pdf-scan-module__yaBG4G__subtitle {
  color: #888;
}

.pdf-scan-module__yaBG4G__glassCard {
  background: #ffffff08;
  border: 1px solid #ffffff1a;
  border-radius: 16px;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  display: flex;
}

.pdf-scan-module__yaBG4G__actions {
  justify-content: flex-end;
  display: flex;
}

.pdf-scan-module__yaBG4G__scanBtn {
  color: #000;
  cursor: pointer;
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: .5rem;
  padding: .75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  transition: transform .1s, opacity .2s;
  display: flex;
}

.pdf-scan-module__yaBG4G__scanBtn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.pdf-scan-module__yaBG4G__scanBtn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.pdf-scan-module__yaBG4G__jobsSection {
  margin-top: 3rem;
}

.pdf-scan-module__yaBG4G__jobsSection h2 {
  color: #ccc;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.pdf-scan-module__yaBG4G__jobList {
  flex-direction: column;
  gap: .75rem;
  display: flex;
}

.pdf-scan-module__yaBG4G__jobCard {
  background: #0006;
  border: 1px solid #ffffff1a;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  display: flex;
}

.pdf-scan-module__yaBG4G__jobInfo {
  flex-direction: column;
  display: flex;
}

.pdf-scan-module__yaBG4G__filename {
  color: #eee;
  font-weight: 500;
}

.pdf-scan-module__yaBG4G__date {
  color: #666;
  font-size: .8rem;
}

.pdf-scan-module__yaBG4G__jobStatus {
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 500;
  display: flex;
}

.pdf-scan-module__yaBG4G__tagQueued {
  color: #facc15;
  align-items: center;
  gap: .4rem;
  display: flex;
}

.pdf-scan-module__yaBG4G__tagProcessing {
  color: #3b82f6;
  align-items: center;
  gap: .4rem;
  display: flex;
}

.pdf-scan-module__yaBG4G__progressContainer {
  flex-direction: column;
  gap: .25rem;
  width: 250px;
  display: flex;
}

.pdf-scan-module__yaBG4G__progressLabel {
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  display: flex;
}

.pdf-scan-module__yaBG4G__percentage {
  color: #3b82f6;
  font-weight: 600;
}

.pdf-scan-module__yaBG4G__progressBar {
  background: #ffffff1a;
  border-radius: 3px;
  width: 100%;
  height: 6px;
  overflow: hidden;
}

.pdf-scan-module__yaBG4G__progressFill {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  height: 100%;
  transition: width .3s;
  box-shadow: 0 0 10px #3b82f680;
}

.pdf-scan-module__yaBG4G__tagCompleted {
  color: #4ade80;
  align-items: center;
  gap: .4rem;
  display: flex;
}

.pdf-scan-module__yaBG4G__tagFailed {
  color: #f87171;
  align-items: center;
  gap: .4rem;
  display: flex;
}

.pdf-scan-module__yaBG4G__spin {
  animation: 1s linear infinite pdf-scan-module__yaBG4G__spin;
}

@keyframes pdf-scan-module__yaBG4G__spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.pdf-scan-module__yaBG4G__viewBtn {
  color: #fff;
  cursor: pointer;
  background: #ffffff1a;
  border: 1px solid #fff3;
  border-radius: 6px;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  font-size: .85rem;
  transition: background .2s;
  display: flex;
}

.pdf-scan-module__yaBG4G__viewBtn:hover {
  background: #ffffff26;
}

.pdf-scan-module__yaBG4G__empty {
  color: #666;
  text-align: center;
  padding: 2rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .pdf-scan-module__yaBG4G__container {
    padding: 1rem;
  }

  .pdf-scan-module__yaBG4G__title {
    font-size: 1.75rem;
  }

  .pdf-scan-module__yaBG4G__glassCard {
    padding: 1.5rem;
  }

  .pdf-scan-module__yaBG4G__jobCard {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
  }

  .pdf-scan-module__yaBG4G__jobStatus {
    justify-content: space-between;
    width: 100%;
  }

  .pdf-scan-module__yaBG4G__scanBtn {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .pdf-scan-module__yaBG4G__container {
    padding: .75rem;
  }

  .pdf-scan-module__yaBG4G__title {
    font-size: 1.5rem;
  }

  .pdf-scan-module__yaBG4G__glassCard {
    padding: 1rem;
  }

  .pdf-scan-module__yaBG4G__filename {
    font-size: .9rem;
  }
}

/*# sourceMappingURL=app_0e06aba1._.css.map*/