html,
body {
  height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  background: var(--aiditor-bg-0, #0a0b10);
}

#app {
  width: 100vw;
  height: 100dvh;
}

.gtm-settings input[type='color'] {
  width: 46px;
  height: 28px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid var(--aiditor-border, rgba(255, 255, 255, 0.12));
  background: transparent;
}

.gtm-settings select {
  width: 100%;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--aiditor-border, rgba(255, 255, 255, 0.12));
  background: var(--aiditor-bg-1, rgba(0, 0, 0, 0.18));
  color: var(--aiditor-fg-1, #e8e8e8);
}

.gtm-field {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.gtm-label {
  color: var(--aiditor-fg-2, rgba(255, 255, 255, 0.72));
  font-size: 12px;
  letter-spacing: 0.02em;
}

.gtm-settings textarea {
  width: 100%;
  box-sizing: border-box;
}

