/* Modern theme tweaks: rounded cards, subtle shadows, improved spacing */
:root {
  --brand: #4f46e5; /* indigo-600 */
  --brand-contrast: #ffffff;
}

body {
  background: #f7f7fb;
}

.navbar {
  border-bottom: 1px solid rgba(0,0,0,.06);
  backdrop-filter: saturate(180%) blur(6px);
}

.card, .list-group-item {
  border-radius: 12px !important;
  border-color: rgba(0,0,0,.08) !important;
}

.list-group-item + .list-group-item {
  margin-top: 8px;
}

.btn-primary {
  background-color: var(--brand) !important;
  border-color: var(--brand) !important;
}

.btn-light {
  border-color: rgba(0,0,0,.1);
}

.section-heading {
  font-weight: 700;
  letter-spacing: .2px;
  margin: 16px 0;
}

.muted {
  color: #6b7280;
}

.price-tag {
  font-variant-numeric: tabular-nums;
}

.soft-container {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

/* Board entries */
.board-entry h2 {
  font-size: 1.25rem;
  margin: 0;
}

.brand-badge {
  background: rgba(79,70,229,.1);
  color: var(--brand);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: .825rem;
}

/* Modal polishing */
.modal-content {
  border-radius: 14px;
}


