:host {
  font-size: 16px;
  font-weight: bolder;
  color: #555555;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 20px;
  box-shadow: 0 2px 8px 0 rgb(105 105 105 / 30%);
}

.control-title-wrapper {
  display: flex;
  gap: 25px;
  align-items: baseline;
}

.status-indicator-green {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #329b46;
  box-shadow: 0 0 15px 5px rgba(0, 255, 0, 0.5);
  display: inline-block;
}

.status-indicator-red {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: red;
  box-shadow: 0 0 15px 5px rgba(255, 0, 0, 0.5);
  display: inline-block;
}

.device-connected {
  font-family: system-ui;
}

.device-name {
  display: flex;
  gap: 10px;
  align-items: center;
}

.custom-content {
  border-left: 2px solid #ccc;
}