/* Copyright 2026 The Chromium Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file. */

/* #css_wrapper_metadata_start
 * #type=style-lit
 * #css_wrapper_metadata_end */

:host {
  display: inline-flex;
}

cr-policy-pref-indicator {
  align-self: center;
  margin-inline-start: var(--cr-controlled-by-spacing);
}

<if expr="not is_chromeos">
#labels[disabled] {
  color: var(--google-grey-400);
}

@media (prefers-color-scheme: dark) {
  #labels[disabled] {
    color: var(--google-grey-500);
  }
}
</if>

<if expr="is_chromeos">
#labels[disabled] {
  color: var(--cros-sys-disabled);
}
</if>

div.outer {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  margin: 8px 0;
  min-width: 200px;
}

#labels {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: -4px 16px 0 16px;
}

#labels > div {
  font-size: 12px;
}

#label-begin {
  margin-inline-end: 4px;
}

#label-end {
  margin-inline-start: 4px;
}
