/* [project]/app/components/BrandCard.module.css [app-client] (css) */
.BrandCard-module__gSqsyW__card {
  background: linear-gradient(135deg, #1e1e2ee6, #181825f2);
  border: 1px solid #8b5cf633;
  border-radius: 16px;
  padding: 20px;
  transition: all .3s;
}

.BrandCard-module__gSqsyW__card:hover {
  border-color: #8b5cf666;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #8b5cf626;
}

.BrandCard-module__gSqsyW__compact {
  padding: 16px;
}

.BrandCard-module__gSqsyW__header {
  border-bottom: 1px solid #8b5cf61a;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  display: flex;
}

.BrandCard-module__gSqsyW__logoContainer {
  background: #8b5cf60d;
  border: 1px solid #8b5cf633;
  border-radius: 12px;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.BrandCard-module__gSqsyW__compact .BrandCard-module__gSqsyW__logoContainer {
  width: 60px;
  height: 60px;
}

.BrandCard-module__gSqsyW__logo {
  object-fit: contain;
  width: 100%;
  height: 100%;
  padding: 8px;
}

.BrandCard-module__gSqsyW__placeholderLogo {
  color: #8b5cf666;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.BrandCard-module__gSqsyW__nameSection {
  flex: 1;
  min-width: 0;
}

.BrandCard-module__gSqsyW__brandName {
  color: #f8fafc;
  word-wrap: break-word;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.BrandCard-module__gSqsyW__compact .BrandCard-module__gSqsyW__brandName {
  font-size: 16px;
}

.BrandCard-module__gSqsyW__appNumber {
  color: #8b5cf6e6;
  background: #8b5cf61a;
  border-radius: 6px;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-family: Courier New, monospace;
  font-size: 13px;
  display: inline-flex;
}

.BrandCard-module__gSqsyW__details {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.BrandCard-module__gSqsyW__detailRow {
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.BrandCard-module__gSqsyW__label {
  color: #f8fafc99;
  align-items: center;
  gap: 6px;
  min-width: 120px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.BrandCard-module__gSqsyW__value {
  color: #f8fafc;
  text-align: right;
  word-wrap: break-word;
  flex: 1;
  font-size: 14px;
}

.BrandCard-module__gSqsyW__description {
  border-top: 1px solid #8b5cf61a;
  margin-top: 8px;
  padding-top: 12px;
}

.BrandCard-module__gSqsyW__description .BrandCard-module__gSqsyW__label {
  margin-bottom: 8px;
}

.BrandCard-module__gSqsyW__descText {
  color: #f8fafccc;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .BrandCard-module__gSqsyW__header {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .BrandCard-module__gSqsyW__detailRow {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .BrandCard-module__gSqsyW__value {
    text-align: left;
  }

  .BrandCard-module__gSqsyW__label {
    min-width: auto;
  }
}

/* [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_c7b3b060._.css.map*/