/* GRID */

.monster-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 10px 0;
    font-size: 13px;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
}

.monster-footer strong {
    color: #145386;
    font-weight: 700;
}

.monster-footer-page {
    white-space: nowrap;
}

.monster-results-wrap {
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2937;
}

.monster-candidate-card {
  background: #ffffff;
  border: 1px solid #d9e2ec;
  border-left: 5px solid #145386;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.monster-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.monster-name {
  font-size: 17px;
  font-weight: 700;
  color: #145386;
  line-height: 1.2;
  text-decoration: none;
}

.monster-location-pill {
    cursor: pointer;
    transition: all .15s ease;
}

.monster-location-pill:hover {
    background: #EEF6FF;
    border-color: #145386;
    color: #145386;
}

.monster-title {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-top: 3px;
}

.monster-company {
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
}

/* MATCH SCORE */

.monster-score {
  min-width: 64px;
  text-align: center;
  border-radius: 8px;
  padding: 8px 10px;
  border: 1px solid #d9e2ec;
  background: #EEF6FF;
}

.monster-score-value {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #111827;
}

.monster-score-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 4px;
  color: #111827;
  font-weight: 700;
}

/* SCORE HEAT MAP */

.monster-score.score-red {
  background: #f8696b;
  border-color: #e65a5c;
}

.monster-score.score-orange {
  background: #f6c26b;
  border-color: #e8ad4d;
}

.monster-score.score-yellow {
  background: #ffeb84;
  border-color: #e8d568;
}

.monster-score.score-lightgreen {
  background: #a9d18e;
  border-color: #8fbd72;
}

.monster-score.score-green {
  background: #63be7b;
  border-color: #4fa866;
}

/* META ROW */

.monster-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.monster-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  color: #374151;
}

.monster-pill.good {
  background: #edf8f3;
  border-color: #ccebdd;
  color: #237354;
}

.monster-pill.warn {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #9a5313;
}

/* SKILLS */

.monster-skills {
  margin-top: 12px;
}

.skill-label {
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.skill-pill {
  display: inline-block;
  margin: 0 6px 6px 0;
  padding: 5px 10px;
  border-radius: 20px;
  background: #EEF6FF;
  color: #145386;
  border: 1px solid #DCEEFF;
  font-size: 12px;
  line-height: 1.3;
}

.skill-pill.matched {
  background: #edf8f3;
  border-color: #bfe6d2;
  color: #237354;
  font-weight: 700;
}

.skill-more {
  display: inline-block;
  margin: 0 6px 6px 0;
  padding: 5px 10px;
  border-radius: 20px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
}

/* ACTION BUTTONS */

.monster-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
}

.monster-btn {
  display: inline-block;
  background: #145386;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 7px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  transition: all .15s ease;
}

.monster-btn:hover {
  opacity: 0.9;
}

.monster-btn.secondary {
  background: #4DA57F;
}

.monster-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}

.monster-btn-select {
  display: inline-block;
  background: #ffffff;
  border: 2px solid #145386;
  color: #145386 !important;
  text-decoration: none;
  border-radius: 7px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  idth: 120px;
  text-align: center;
}

.monster-btn-selected {
  display: inline-block;
  background: #4DA57F;
  border: 2px solid #4DA57F;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 7px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  width: 120px;
  text-align: center;
}
/* MOBILE */

@media (max-width: 768px) {

  .monster-card-top {
    flex-direction: column;
  }

  .monster-score {
    width: 100%;
  }

  .monster-actions {
    justify-content: stretch;
    flex-direction: column;
  }

  .monster-btn {
    text-align: center;
  }
}

/* FORM */

.monster-profile-wrap {
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2937;
  background: #ffffff;
  border: 1px solid #d9e2ec;
  border-left: 5px solid #145386;
  border-radius: 12px;
  padding: 20px;
}

..candidate-status {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
}

.candidate-status i {
    font-size: 10px;
}

.candidate-status.new {
    color: #237354;
}

.candidate-status.exists {
    color: #b42318;
}

.candidate-status.claimable {
    color: #b45309;
}

.monster-status-wrap {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0 20px;
}


.monster-profile-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.monster-profile-name {
  font-size: 24px;
  font-weight: 700;
  color: #145386;
}

.monster-profile-title {
  font-size: 16px;
  font-weight: 700;
  margin-top: 4px;
}

.monster-profile-company {
  font-size: 14px;
  color: #6b7280;
  margin-top: 4px;
}

.monster-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.monster-profile-status-wrap {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 20px;
}

.monster-profile-box {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px;
}

.box-label {
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.box-value {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.monster-section {
  margin-top: 22px;
}

.monster-section-title {
  font-size: 15px;
  font-weight: 700;
  color: #145386;
  margin-bottom: 10px;
}

.monster-experience-card {
  background: #EEF6FF;
  border: 1px solid #DCEEFF;
  border-radius: 10px;
  padding: 14px;
}

.experience-title {
  font-size: 15px;
  font-weight: 700;
}

.experience-company {
  font-size: 14px;
  color: #374151;
  margin-top: 4px;
}

.experience-dates {
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
}

.monster-profile-skills {
  line-height: 1.7;
}

.monster-profile-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.candidate-status-claim {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #b45309 !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all .15s ease;
}

.candidate-status-claim:hover {
    background: #ffedd5;
    border-color: #f59e0b;
}

@media (max-width: 768px) {
  .monster-profile-header {
    flex-direction: column;
  }

  .monster-profile-grid {
    grid-template-columns: 1fr;
  }

  .monster-profile-actions {
    flex-direction: column;
  }

  .monster-btn {
    text-align: center;
  }
}
.monster-btn.hide{
    background:#ffffff;
    color:#145386;
    border:1px solid #b8d0ea;
}

.monster-btn.hide:hover{
    background:#eef6ff;
    border-color:#145386;
    color:#145386;
}

.monster-btn.hide i{
    color:#145386;
}
