.InspectedElement {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border-top: 1px solid var(--color-border);
}

.TitleRow {
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  font-size: var(--font-size-monospace-large);
  border-bottom: 1px solid var(--color-border);
  padding: 0.5rem;
}

.Key {
  flex: 0 1 auto;
  padding-left: 0.25rem;
  padding-right: 0.125rem;
  line-height: 1rem;
  border-top-left-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
  display: inline-block;
  background-color: var(--color-component-badge-background);
  color: var(--color-text);
  font-family: var(--font-family-monospace);
  font-size: var(--font-size-monospace-small);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.KeyArrow {
  height: 1rem;
  width: 1rem;
  margin-right: -0.25rem;
  border: 0.5rem solid transparent;
  border-left: 0.5rem solid var(--color-component-badge-background);
}

.SelectedComponentName {
  flex: 1 1 auto;
  overflow: hidden;
  display: flex;
  padding: 0.25rem 0;
  height: 100%;
  align-items: flex-end;
}

.ComponentName {
  color: var(--color-component-name);
  font-family: var(--font-family-monospace);
  font-size: var(--font-size-monospace-normal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.StrictModeNonCompliantComponentName {
  color: var(--color-console-error-icon);
}

.Loading {
  padding: 0.25rem;
  color: var(--color-dimmer);
  font-style: italic;
}

.NoInspectionFallback {
  padding: 0.25rem;
  font-style: italic;
}

.StrictModeNonCompliant {
  display: inline-flex;
  padding: 0.25rem;
  color: var(--color-console-error-icon);
}

.VRule {
  height: 20px;
  width: 1px;
  flex: 0 0 1px;
  margin: 0 0.5rem;
  background-color: var(--color-border);
}