/* [project]/app/dashboard/matches/[jobId]/matches.module.css [app-client] (css) */
.matches-module__8iB8qq__container {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  min-height: 100vh;
  padding: 32px;
}

.matches-module__8iB8qq__header {
  margin-bottom: 32px;
}

.matches-module__8iB8qq__backBtn {
  color: #a78bfa;
  cursor: pointer;
  background: #8b5cf61a;
  border: 1px solid #8b5cf64d;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  display: inline-flex;
}

.matches-module__8iB8qq__backBtn:hover {
  background: #8b5cf633;
  border-color: #8b5cf680;
}

.matches-module__8iB8qq__titleRow {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  display: flex;
}

.matches-module__8iB8qq__title {
  color: #f8fafc;
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}

.matches-module__8iB8qq__subtitle {
  color: #f8fafc99;
  margin: 8px 0 0;
  font-size: 16px;
}

.matches-module__8iB8qq__primaryBtn {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  transition: all .3s;
  box-shadow: 0 4px 12px #8b5cf64d;
}

.matches-module__8iB8qq__primaryBtn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #8b5cf666;
}

.matches-module__8iB8qq__primaryBtn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.matches-module__8iB8qq__statsRow {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
  display: grid;
}

.matches-module__8iB8qq__statCard {
  background: linear-gradient(135deg, #1e1e2ee6, #181825f2);
  border: 1px solid #8b5cf633;
  border-radius: 16px;
  align-items: center;
  gap: 16px;
  padding: 20px;
  transition: all .3s;
  display: flex;
}

.matches-module__8iB8qq__statCard:hover {
  border-color: #8b5cf666;
  transform: translateY(-2px);
}

.matches-module__8iB8qq__statCard svg {
  color: #8b5cf6;
  flex-shrink: 0;
}

.matches-module__8iB8qq__statLabel {
  color: #f8fafc99;
  margin-bottom: 4px;
  font-size: 13px;
  display: block;
}

.matches-module__8iB8qq__statValue {
  color: #f8fafc;
  font-size: 24px;
  font-weight: 700;
  display: block;
}

.matches-module__8iB8qq__filterBar {
  background: linear-gradient(135deg, #1e1e2ee6, #181825f2);
  border: 1px solid #8b5cf633;
  border-radius: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding: 20px;
  display: flex;
}

.matches-module__8iB8qq__filters {
  gap: 12px;
  display: flex;
}

.matches-module__8iB8qq__filterBtn {
  color: #f8fafccc;
  cursor: pointer;
  background: #8b5cf61a;
  border: 1px solid #8b5cf633;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
}

.matches-module__8iB8qq__filterBtn:hover {
  background: #8b5cf633;
  border-color: #8b5cf666;
}

.matches-module__8iB8qq__filterBtn.matches-module__8iB8qq__active {
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-color: #8b5cf6;
}

.matches-module__8iB8qq__sliderGroup {
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
  display: flex;
}

.matches-module__8iB8qq__sliderGroup label {
  color: #f8fafccc;
  font-size: 13px;
  font-weight: 500;
}

.matches-module__8iB8qq__slider {
  -webkit-appearance: none;
  background: #8b5cf633;
  border-radius: 3px;
  outline: none;
  width: 100%;
  height: 6px;
}

.matches-module__8iB8qq__slider::-webkit-slider-thumb {
  appearance: none;
  cursor: pointer;
  background: #8b5cf6;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-shadow: 0 2px 8px #8b5cf680;
}

.matches-module__8iB8qq__slider::-moz-range-thumb {
  cursor: pointer;
  background: #8b5cf6;
  border: none;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-shadow: 0 2px 8px #8b5cf680;
}

.matches-module__8iB8qq__matchesGrid {
  flex-direction: column;
  gap: 24px;
  display: flex;
}

.matches-module__8iB8qq__matchCard {
  background: linear-gradient(135deg, #1e1e2ee6, #181825f2);
  border: 1px solid #8b5cf633;
  border-radius: 20px;
  padding: 24px;
  transition: all .3s;
}

.matches-module__8iB8qq__matchCard:hover {
  border-color: #8b5cf666;
  box-shadow: 0 8px 32px #8b5cf626;
}

.matches-module__8iB8qq__matchHeader {
  border-bottom: 1px solid #8b5cf61a;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  display: flex;
}

.matches-module__8iB8qq__exactBadge, .matches-module__8iB8qq__fuzzyBadge {
  border-radius: 10px;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
}

.matches-module__8iB8qq__exactBadge {
  color: #4ade80;
  background: #4ade801a;
  border: 1px solid #4ade804d;
}

.matches-module__8iB8qq__fuzzyBadge {
  color: #facc15;
  background: #facc151a;
  border: 1px solid #facc154d;
}

.matches-module__8iB8qq__similarity {
  color: #8b5cf6;
  font-size: 18px;
  font-weight: 700;
}

.matches-module__8iB8qq__comparison {
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 32px;
  display: grid;
}

.matches-module__8iB8qq__brandSection {
  min-width: 0;
}

.matches-module__8iB8qq__sectionTitle {
  color: #f8fafc99;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 600;
}

.matches-module__8iB8qq__matchIndicator {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  display: flex;
}

.matches-module__8iB8qq__arrowContainer {
  color: #8b5cf6;
}

.matches-module__8iB8qq__arrow {
  animation: 2s infinite matches-module__8iB8qq__pulse;
}

@keyframes matches-module__8iB8qq__pulse {
  0%, 100% {
    opacity: 1;
    transform: translateX(0);
  }

  50% {
    opacity: .6;
    transform: translateX(4px);
  }
}

.matches-module__8iB8qq__scoreCircle {
  width: 80px;
  height: 80px;
  position: relative;
}

.matches-module__8iB8qq__progressRing {
  transform: rotate(-90deg);
}

.matches-module__8iB8qq__progressRingBg {
  fill: none;
  stroke: #8b5cf61a;
  stroke-width: 6px;
}

.matches-module__8iB8qq__progressRingFill {
  fill: none;
  stroke-width: 6px;
  stroke-linecap: round;
  transition: stroke-dashoffset .5s;
}

.matches-module__8iB8qq__scoreText {
  color: #f8fafc;
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.matches-module__8iB8qq__loading, .matches-module__8iB8qq__empty {
  text-align: center;
  color: #f8fafc99;
  padding: 60px 20px;
  font-size: 16px;
}

@media (max-width: 1200px) {
  .matches-module__8iB8qq__comparison {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .matches-module__8iB8qq__matchIndicator {
    flex-direction: row;
    justify-content: center;
    padding: 0;
  }

  .matches-module__8iB8qq__arrowContainer {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .matches-module__8iB8qq__container {
    padding: 20px;
  }

  .matches-module__8iB8qq__title {
    font-size: 24px;
  }

  .matches-module__8iB8qq__titleRow {
    flex-direction: column;
  }

  .matches-module__8iB8qq__filterBar {
    flex-direction: column;
    align-items: stretch;
  }

  .matches-module__8iB8qq__filters {
    flex-wrap: wrap;
  }
}

/*# sourceMappingURL=app_dashboard_matches_%5BjobId%5D_matches_module_css_bad6b30c._.single.css.map*/