/* ===== Shared list page styles ===== */
.simple-header {
  background: var(--bg-hero-top);
  padding: 20px 24px;
}

.list-page-head {
  padding: 20px 20px 4px;
}

.list-page-head h1 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filters input,
.filters select {
  padding: 13px 15px;
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--navy);
  outline: none;
  background: var(--white);
}

.filters input:focus,
.filters select:focus {
  border-color: var(--sky-blue);
}

.list-page-head + .section {
  padding-top: 16px;
}

.new-tag {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--sky-blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  margin-left: 8px;
  vertical-align: middle;
}

.saved-remove-btn {
  padding: 7px 12px;
  border-radius: 9px;
  border: 1px solid #F3CFC9;
  color: #C0392B;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

.empty-state-icon {
  font-size: 32px;
  margin-bottom: 8px;
}
