

.smart-reco, .smart-reco-advisor {
  box-sizing: border-box;
}

.smart-reco {
  display: block;
  margin: 0 auto;
}

.smart-reco__section {
  margin: 16px 0;
}

.smart-reco__card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.smart-reco__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.smart-reco__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.smart-reco__item {
  padding: 8px 0;
  border-top: 1px dashed #e5e7eb;
}

.smart-reco__item:first-child {
  border-top: none;
}

.smart-reco__actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.smart-reco__btn {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  color: #111827;
  text-decoration: none;
}

.smart-reco__btn--primary {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

@media (prefers-color-scheme: dark) {
  .smart-reco__card { background: #111827; border-color: #374151; }
  .smart-reco__item { border-top-color: #374151; }
  .smart-reco__btn { background: #1f2937; color: #e5e7eb; border-color: #374151; }
  .smart-reco__btn--primary { background: #e5e7eb; color: #111827; border-color: #e5e7eb; }
}

