:root {
  color-scheme: dark;
}

html, body {
  margin: 0;
  padding: 0;
  width: 600px;
  height: 600px;
  overflow: hidden;
  background: #000;
  color: #f5f5f5;
  font-family: -apple-system, "Segoe UI", sans-serif;
}

.screen {
  display: none;
  width: 600px;
  height: 600px;
  padding: 24px;
  box-sizing: border-box;
}

.screen.active {
  display: block;
}

h1 {
  font-size: 24px;
  margin: 0 0 16px;
  color: #7dfcff;
}

.hidden {
  display: none !important;
}

.list {
  max-height: 480px;
  overflow-y: auto;
  scrollbar-width: none;
}

.list::-webkit-scrollbar {
  display: none;
}

.focusable {
  display: block;
  width: 100%;
  min-height: 72px;
  margin-bottom: 12px;
  font-size: 20px;
  text-align: left;
  background: #111;
  color: #f5f5f5;
  border: 2px solid #333;
  border-radius: 8px;
  padding: 0 16px;
}

.focusable.focused {
  border-color: #7dfcff;
  box-shadow: 0 0 12px #7dfcff;
}

.entity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

div.entity-row {
  background: #0a0a0a;
  border: 2px solid #222;
  border-radius: 8px;
  min-height: 72px;
  margin-bottom: 12px;
  padding: 0 16px;
  color: #ccc;
  font-size: 20px;
}

.entity-state {
  color: #7dfcff;
  font-size: 16px;
}

.status {
  font-size: 18px;
  color: #999;
}
