diff --git a/apps/ui/templates/dashboard.html b/apps/ui/templates/dashboard.html
index 52d8f97..bc26748 100644
--- a/apps/ui/templates/dashboard.html
+++ b/apps/ui/templates/dashboard.html
@@ -55,14 +55,34 @@
}
.room {
+ background: white;
+ border-radius: 20px;
+ padding: 2rem;
margin-bottom: 2rem;
+ box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
+ transition: transform 0.2s, box-shadow 0.2s;
+ }
+
+ .room:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.room-title {
- color: white;
- font-size: 1.5rem;
- margin-bottom: 1rem;
- text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
+ color: #333;
+ font-size: 1.75rem;
+ font-weight: 700;
+ margin-bottom: 1.5rem;
+ padding-bottom: 1rem;
+ border-bottom: 3px solid #667eea;
+ display: flex;
+ align-items: center;
+ gap: 0.75rem;
+ }
+
+ .room-title::before {
+ content: '🏠';
+ font-size: 2rem;
}
.devices {