/* [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_dashboard_pdf-scan_pdf-scan_module_css_bad6b30c._.single.css.map*/