:host {
  line-height: initial;
  font-family: var(--dyte-font-family, sans-serif);

  font-feature-settings: normal;
  font-variation-settings: normal;
}

p {
  margin: var(--dyte-space-0, 0px);
  padding: var(--dyte-space-0, 0px);
}

.scrollbar {
  /* For Firefox */
  scrollbar-width: thin;
  scrollbar-color: var(--dyte-scrollbar-color, rgb(var(--dyte-colors-background-600, 60 60 60)))
    var(--dyte-scrollbar-background, transparent);
}

/* For WebKit */
.scrollbar::-webkit-scrollbar {
  height: var(--dyte-space-1\.5, 6px);
  width: var(--dyte-space-1\.5, 6px);
  border-radius: 9999px;
  background-color: var(--dyte-scrollbar-background, transparent);
}

.scrollbar::-webkit-scrollbar-thumb {
  border-radius: 9999px;
  background-color: var(--dyte-scrollbar-color, rgb(var(--dyte-colors-background-600, 60 60 60)));
}


:host {
  margin-top: var(--dyte-space-2, 8px);
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  font-size: 14px;
}

* {
  box-sizing: border-box;
}

.ctr {
  box-sizing: border-box;
  padding: var(--dyte-space-3, 12px);
  padding-top: var(--dyte-space-0, 0px);
  display: flex;
  flex: 1 1 0%;
  flex-direction: column;
}

.polls-view {
  overflow-y: auto;
  flex: 1 1 0%;
  flex-basis: 0;
}

.empty-polls {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}