: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;
}

.focusable {
  display: block;
  width: 100%;
  min-height: 88px;
  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;
}

.result-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.result-row img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.result-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status {
  font-size: 18px;
  color: #999;
}

#now-playing-title {
  font-size: 20px;
  margin-bottom: 12px;
}
