/* Devices list — shown on Home. */

.device-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.device-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.device-dot.online {
  background: var(--success);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--success) 20%, transparent);
}

.device-dot.offline {
  background: var(--text-tertiary);
}

.device-row-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}

.device-row-meta {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}
