.status.success {
  background: #e4f7ef;
  border: 1px solid #a7d9c6;
  color: var(--success);
  font-weight: 800;
}

.results-tools {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(190px, 1fr) auto;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ice);
}

.tool-field {
  min-width: 0;
}

.check-field {
  display: flex;
  grid-template-columns: none;
  flex-direction: row;
  gap: .6rem;
  align-items: center;
  min-height: 48px;
  padding-bottom: .2rem;
  cursor: pointer;
}

.check-field input {
  width: 1.15rem;
  min-height: auto;
  height: 1.15rem;
  margin: 0;
  accent-color: var(--blue);
}

.check-field span {
  font-size: .9rem;
}

.tool-actions {
  display: flex;
  justify-content: flex-end;
  gap: .65rem;
  flex-wrap: wrap;
}

.save-button {
  border: 1px solid #8eb6d4;
  border-radius: 9px;
  background: #eef7fd;
  color: var(--blue-dark);
  padding: .58rem .8rem;
  font-weight: 800;
}

.save-button.is-saved {
  border-color: #9bcdbb;
  background: #e4f7ef;
  color: var(--success);
}

.reported-details h4 {
  margin: .7rem 0 .3rem;
  color: var(--navy);
  font-size: .9rem;
}

.reported-details ul {
  margin: .35rem 0 0;
  padding-left: 1.2rem;
}

.saved-section {
  margin-bottom: 2.5rem;
  padding-block: clamp(1.2rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
}

.saved-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}

.saved-header .eyebrow {
  margin: 0 0 .25rem;
}

.saved-header h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.saved-count {
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.saved-note {
  max-width: 800px;
  color: var(--muted);
  font-size: .9rem;
}

.saved-results {
  display: grid;
  gap: .8rem;
}

.saved-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.saved-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
}

.saved-specialty {
  margin: .25rem 0 0;
  color: var(--muted);
  font-size: .88rem;
}

.saved-card-actions {
  display: flex;
  gap: .7rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.saved-card-actions a {
  font-weight: 750;
}

@media (max-width: 900px) {
  .results-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 580px) {
  .results-tools {
    grid-template-columns: 1fr;
  }

  .tool-actions {
    grid-column: auto;
    display: grid;
  }

  .saved-header,
  .saved-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .saved-card-actions {
    justify-content: flex-start;
  }
}
