/* GLASS */
.bg-glass {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 5px 14px rgba(0,0,0,0.10);
  margin-bottom: 12px;
}

/* SUMMARY */
.neo-summary-box {}
.neo-summary-title {
  font-weight: 600;
  margin-bottom: 8px;
}
.neo-summary-row {
  margin-bottom: 4px;
  display:flex;
  gap:8px;
}

/* MINI CARDS */
.neo-list {
  display:flex;
  flex-direction:column;
  gap:10px;
}
.neo-item {
  background:white;
  padding:12px;
  border-radius:10px;
  border:1px solid #e5e5e5;
  transition:.2s;
  cursor:pointer;
}
.neo-item.selected {
  background:#eaf5ff;
  border-color:#6ab8ff;
}
.neo-item-header {
  font-weight:600;
  margin-bottom:6px;
  display:flex;
  align-items:center;
  gap:6px;
}

/* TABLE */
.neo-table {
  width:100%;
  border-collapse:collapse;
}
.neo-table th {
  background:#f3f3f3;
  padding:8px;
  font-weight:600;
}
.neo-table td {
  padding:8px;
  border-top:1px solid #e5e5e5;
}

/* ICON BUTTONS */
.neo-btn {
  background:white;
  border:none;
  padding:8px 10px;
  border-radius:10px;
  margin-right:6px;
  box-shadow:0 2px 4px rgba(0,0,0,.08);
  cursor:pointer;
}

/* STATES */
.neo-empty { color:#999; padding:12px; }

/* SPLIT LAYOUT */
.birthgrants-split-layout {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.birthgrants-split-left {
  flex: 0 0 42%;
  min-width: 0;
  border-right: 1px solid rgba(0,0,0,0.08);
  padding-right: 12px;
}
.birthgrants-split-right {
  flex: 1;
  min-width: 0;
  overflow-y: auto;
  max-height: 340px;
}