Checkpoint
Some checks failed
Test and build / Test and lint (push) Failing after 36s
Test and build / Build collector (push) Failing after 43s
Test and build / Build receiver (push) Failing after 42s

This commit is contained in:
2026-03-05 15:38:18 +01:00
parent 3106b2cf45
commit 13afa08e8a
108 changed files with 19509 additions and 729 deletions

View File

@@ -0,0 +1,50 @@
.overview-container {
padding: 24px;
height: 100%;
overflow-y: auto;
}
.overview-section {
margin-bottom: 32px;
}
.overview-title {
font-size: 24px;
font-weight: 700;
color: var(--app-text);
margin-bottom: 20px;
text-shadow: 0 0 12px rgba(142, 180, 255, 0.2);
}
.overview-loading,
.overview-empty,
.overview-error {
padding: 24px;
text-align: center;
border-radius: 8px;
font-size: 14px;
}
.overview-loading {
background: rgba(142, 180, 255, 0.1);
color: var(--app-accent);
}
.overview-empty {
background: rgba(142, 180, 255, 0.08);
color: var(--app-text-muted);
}
.overview-error {
background: rgba(239, 68, 68, 0.1);
color: #fca5a5;
}
.overview-radios-row {
gap: 16px;
}
.overview-radio-col {
display: flex;
margin-bottom: 16px;
}