.trynova-live-shell {
  display: flex;
  height: 100vh;
  background: var(--color-level-00-background);
  color: var(--color-content-high-text);
}

.trynova-live-sidebar {
  width: 4rem;
  flex-shrink: 0;
  background: var(--color-level-05-background);
  border-right: 1px solid var(--color-content-low-border);
}

.trynova-live-toolbar {
  display: flex;
  min-height: 2.75rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-bottom: 1px solid var(--color-content-low-border);
  background: var(--color-level-05-background);
  padding: 0.5rem 0.75rem;
}

.trynova-live-toolbar-actions {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.trynova-live-tab-active {
  border-top: 2px solid var(--color-interaction-container-branded-high-background);
  background: var(--color-level-00-background);
  color: var(--color-content-high-text);
}

.trynova-live-tab-button {
  color: var(--color-content-low-text);
}

.trynova-live-tab-button:hover {
  color: var(--color-content-high-text);
}

.trynova-live-select {
  min-width: 0;
  flex: 1 1 14rem;
  border: 1px solid var(--color-content-low-border);
  border-radius: 0.5rem;
  background: var(--color-level-00-background);
  color: var(--color-content-high-text);
  padding: 0.375rem 0.625rem;
  font-size: 0.875rem;
}

.trynova-live-select-compact {
  min-width: auto;
  flex: 0 0 auto;
  border-radius: 0.375rem;
  padding: 0.125rem 0.375rem;
  font-size: 0.75rem;
}

.trynova-live-editor-panel {
  background: var(--color-level-00-background);
}

.trynova-live-editor-host {
  flex: 1 1 auto;
  min-height: 0;
}

.trynova-live-editor-host > * {
  height: 100%;
}

.trynova-live-preview-panel {
  background: var(--color-level-05-background);
}

.trynova-live-preview-host {
  min-height: 0;
}

.trynova-live-shell .split-container {
  height: 100%;
  min-height: 0;
}

.trynova-live-shell .split-container > div {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
  min-width: 0;
}

.trynova-live-shell .split-container > div > * {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  min-height: 0;
}

.trynova-live-empty-state {
  color: var(--color-content-medium-text);
}

.trynova-live-empty-title {
  color: var(--color-content-high-text);
}

@media (min-width: 768px) {
  .trynova-live-toolbar {
    min-height: 2.5rem;
    flex-wrap: nowrap;
    padding: 0 1rem 0 0;
  }

  .trynova-live-toolbar-actions {
    width: auto;
    justify-content: flex-end;
  }

  .trynova-live-select {
    flex: 0 0 auto;
    width: 14rem;
  }
}