diff --git a/src/app/admin/page.tsx b/src/app/admin/page.tsx
index aac3c9d..f547cfd 100644
--- a/src/app/admin/page.tsx
+++ b/src/app/admin/page.tsx
@@ -1814,218 +1814,134 @@ function RoomStatusSection({ onToast }: { onToast: (msg: string, type: 'success'
) : rooms.length === 0 ? (
| Room | +Status | +Occupancy | +Priority | +Guest | +Price | +
|---|---|---|---|---|---|
| + {room.is_vip && โญ} + {room.name} + | ++ + {getStatusIcon(room.clean_status)} {room.clean_status} - )} - - {room.clean_status} - - - {room.occupancy_status === 'occupied' ? '๐๏ธ Occupied' : '๐ช Available'} - - - {priorityStyle.icon} {room.priority} - - {room.issues_count > 0 && ( - - โ ๏ธ {room.issues_count} issue{room.issues_count > 1 ? 's' : ''} + | +
+
+ {room.occupancy_status === 'occupied' ? '๐๏ธ Occupied' : '๐ช Available'}
- )}
-
-
- {/* Price */}
-
- ${parseFloat(room.price).toFixed(2)}/night
-
-
- {/* Edit Button */}
-
- {/* Quick Info Grid */}
-
- {/* Current Guest */}
- {room.current_guest && (
-
-
- {/* Upcoming Reservations */}
- {room.upcoming_reservations && room.upcoming_reservations.length > 0 && (
-
- Guest:
- {room.current_guest}
- {getPaymentBadge(room.payment_status)}
-
- )}
-
- {/* Checkout */}
- {room.checkout_date && (
-
- Checkout:
- {formatDate(room.checkout_date)}
- {room.checkout_time && at {formatTime(room.checkout_time)}}
-
- )}
-
- {/* Last Cleaned */}
- {room.last_cleaned && (
-
- Last cleaned:
- {formatDateTime(room.last_cleaned)}
-
- )}
-
- {/* Assigned Staff */}
- {room.assigned_staff && (
-
- Staff:
- {room.assigned_staff.first_name || ''} {room.assigned_staff.last_name || ''}
-
- )}
-
- Upcoming:
- {room.upcoming_reservations.map((res, i) => (
-
- ๐
{formatDate(res.check_in)} โ {formatDate(res.check_out)}
- {res.guest_name || res.first_name || 'Guest'}
- {getPaymentBadge(res.payment_status)}
-
- ))}
+ |
+ + + {getPriorityStyle(room.priority).icon} {room.priority} + + | ++ {room.current_guest ? ( + {room.current_guest} {getPaymentBadge(room.payment_status)} + ) : ( + โ + )} + | ++ ${parseFloat(room.price).toFixed(2)} + | +