:host {
  --gx-space-large: 0.8em;
  --gx-space-medium: 0.5em;
  --gx-space-small: 0.3em;
  --gx-scrollbar-width: 10px;
  --gx-z-index-float: 10;
  --gx-header-height: 40px;
  --gx-input-height: 2rem;
  --gx-control-btn-height: 40px;
  --gx-control-btn-width: 30px;
}

:host {
  --gx-text-color: #121212;
  --gx-background-color: #ffffff;
  --gx-border-color: #f1f1f1;
  --gx-text-accent-color: #ffffff;
  --gx-background-accent-color: #696ef2;
  --gx-background-hover-color: #696ef21a;
  --gx-message-user-color: #f1f1f1;
  --gx-message-assistant-color: #fff;
  --gx-scrollbar-track-color: #f1f1f1;
  --gx-scrollbar-thumb-color: #888;
  --gx-scrollbar-thumb_hover-color: #555;
  --gx-backdrop-color: #ffffff80;
  --gx-shadow-md: 2px 2px 8px #0000006c;
}

*,
::after,
::before {
  box-sizing: border-box;
}

:host {
  display: block;
  box-shadow: var(--gx-shadow-md);
  margin-inline-end: 10px;
  margin-top: 10px;
  overflow: hidden;
  width: var(--gx-sidebar-with);
  right: 0;
}

:host([is-minimized]),
:host([is-unlocked]) {
  bottom: 0;
  position: fixed;
  z-index: 5;
}

:host([is-unlocked]) {
  height: 50vh;
}

:host([is-minimized]) {
  height: var(--gx-header-height);
}
:host([is-minimized]) .main-wrapper {
  display: none;
}

.header {
  align-items: center;
  border-bottom: var(--gx-header-border);
  color: var(--gx-header-font-color);
  display: flex;
  justify-content: space-between;
  margin: 0;
  position: relative;
  box-sizing: border-box;
}

.header__title {
  flex: 1;
  font-size: inherit;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  padding: var(--gx-space-medium);
}

.header__controls {
  display: flex;
  flex-basis: calc(var(--gx-control-btn-width) * 2);
  justify-content: flex-end;
}

.controls-btn {
  height: var(--gx-control-btn-height);
  width: var(--gx-control-btn-width);
}

.main-wrapper {
  height: 100%;
}