kanade-client 0.43.19

End-user-facing Tauri Client App for the kanade endpoint-management system. Talks to the LocalSystem agent over the KLP Named Pipe (SPEC §2.12); presents a tray + window UI for notifications / health / self-service jobs.
/* Minimal styling for the Kanade Client App skeleton.
   The "real" UI redesign lands with the Health / Notifications
   tabs; for now we just want the page legible. */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #fafafa;
  color: #1a1a1a;
  font-size: 14px;
  line-height: 1.5;
}

main {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px;
}

h1 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
}

section {
  padding: 16px;
  margin-bottom: 12px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}

section p {
  margin: 0 0 8px;
}

section p:last-child {
  margin-bottom: 0;
}

.muted {
  color: #666;
}

.error {
  color: #b00020;
}

button {
  padding: 6px 14px;
  font-size: 14px;
  background: #1a1a1a;
  color: #ffffff;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #333;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #1a1a1a;
    color: #f0f0f0;
  }
  section {
    background: #2a2a2a;
    border-color: #3a3a3a;
  }
  .muted {
    color: #aaa;
  }
  button {
    background: #f0f0f0;
    color: #1a1a1a;
  }
  button:hover {
    background: #d0d0d0;
  }
}