Merge status message into top controls panel for better UI

This commit is contained in:
2025-12-21 18:19:46 +11:00
parent 481de45276
commit 3f9ca7e2f4
2 changed files with 22 additions and 10 deletions

View File

@@ -435,13 +435,26 @@ body {
/* Status Message */
.status-message {
text-align: center;
padding: 1.5rem;
background: var(--bg-secondary);
padding: 1rem;
background: var(--bg-tertiary);
border-radius: 12px;
border: 1px solid var(--border-light);
color: var(--text-secondary);
font-weight: 600;
font-size: 1.1rem;
font-size: 1rem;
width: 100%;
}
.status-message.success {
border-color: var(--success);
color: var(--success);
background: rgba(16, 185, 129, 0.1);
}
.status-message.info {
border-color: var(--accent-secondary);
color: var(--accent-secondary);
background: rgba(56, 189, 248, 0.1);
}
/* Victory Overlay */