diff --git a/frontend/src/components/SearchSelect.tsx b/frontend/src/components/SearchSelect.tsx
index 1dc21e3..b966fb2 100644
--- a/frontend/src/components/SearchSelect.tsx
+++ b/frontend/src/components/SearchSelect.tsx
@@ -98,11 +98,17 @@ export default function SearchSelect({ options, value, onChange, placeholder = '
padding: '7px 12px', cursor: 'pointer', fontSize: 13.5,
background: opt.value === value ? 'var(--warn-bg)' : undefined,
color: 'var(--text-dark)',
+ display: 'flex', justifyContent: 'space-between', alignItems: 'center', gap: 8,
}}
onMouseEnter={e => (e.currentTarget.style.background = '#f1f5f9')}
onMouseLeave={e => (e.currentTarget.style.background = opt.value === value ? 'var(--warn-bg)' : '')}
>
- {opt.label}
+ {opt.label}
+ {opt.group && (
+
+ {opt.group}
+
+ )}
))}
diff --git a/frontend/src/pages/Summary.tsx b/frontend/src/pages/Summary.tsx
index 37ca770..a35a8e5 100644
--- a/frontend/src/pages/Summary.tsx
+++ b/frontend/src/pages/Summary.tsx
@@ -122,13 +122,13 @@ export default function Summary() {
{roomsCategoryExists && (
)}