.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.search-card {
  padding: 18px;
}

.panel-title-row,.results-toolbar,.page-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.panel-title {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.title-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 21px;
  flex: 0 0 auto;
}

.panel-title h2,.page-heading h1 {
  margin: 0;
  color: var(--text);
}

.panel-title h2 {
  font-size: 18px;
}

.panel-title p,.page-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.mini-panel {
  margin-top: 10px;
  padding: 14px;
}

.mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-head h3 {
  font-size: 14px;
  margin: 0;
}

.page-heading {
  align-items: center;
  margin: 8px 0 16px;
}

.page-heading h1 {
  font-size: 28px;
}

.list-panel {
  padding: 0;
  overflow: hidden;
}

.data-list {
  min-height: 140px;
}

.empty-state {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 54px 20px;
  color: var(--muted);
}

.empty-state strong {
  color: var(--text);
  font-size: 18px;
  margin-bottom: 4px;
}

.list-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-top: 1px solid #edf2f7;
}

.list-row:first-child {
  border-top: 0;
}

.list-row strong,.list-row small {
  display: block;
}

.list-row strong {
  font-size: 12px;
}

.list-row small {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
}

.list-row-actions {
  display: flex;
  gap: 7px;
}

.list-row-actions button {
  height: 34px;
  border-radius: 8px;
  border: 1px solid #d7e4f3;
  background: #fff;
  color: #0d6efd;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 700;
}

.list-row-actions .remove {
  color: var(--red);
}

.disclaimer-banner {
  background: linear-gradient(135deg, #f0f7ff, #e6f0fc);
  border: 1px solid #c8def8;
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 11px;
  line-height: 1.55;
  color: #1a3860;
  box-shadow: 0 4px 14px rgba(13, 110, 253, 0.05);
}

.disclaimer-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}

.disclaimer-body strong {
  display: block;
  font-size: 11.5px;
  color: var(--navy);
  margin-bottom: 2px;
}

.disclaimer-body a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.disclaimer-body a:hover {
  color: var(--blue-2);
}
