Add simulator architecture separation and warning system

This commit is contained in:
root
2026-06-03 00:16:08 -06:00
parent 5f65a7cbb8
commit 06ef856210
5 changed files with 213 additions and 76 deletions
+29
View File
@@ -239,3 +239,32 @@ nav button {
color: white;
text-align: center;
}
.warning-banner {
position: sticky;
top: 0;
z-index: 5000;
background: #6b5200;
color: white;
padding: 14px;
text-align: center;
font-size: 1.1rem;
font-weight: bold;
border-bottom: 2px solid #d8b400;
}
.warning-banner.hidden {
display: none;
}
.kid-card {
border-color: #777;
}
.kid-card small {
display: block;
margin-top: 8px;
font-size: 1rem;
color: #ccc;
}