: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 {
  position: relative;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.content {
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  overflow-y: auto;
}

.waitlist-area {
  display: flex;
  flex-direction: column;
  --tw-bg-opacity: 1;
  background-color: rgba(var(--dyte-colors-background-800, 30 30 30) / var(--tw-bg-opacity));
}

.listening-title {
  text-align: center;
  margin-top: var(--dyte-space-5, 20px);
  margin-bottom: var(--dyte-space-4, 16px);
}

.waitlist-grid {
  flex: 1 1 0%;
}

.grid {
  box-sizing: border-box;
  flex: 1 1 0%;
  gap: var(--dyte-space-6, 24px);
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

:host([size='md']) .grid {
  gap: var(--dyte-space-4, 16px);
}

:host([size='sm']) .grid {
  gap: var(--dyte-space-3, 12px);
}

dyte-audio-tile {
  aspect-ratio: 1 / 1;
  flex: none;
  width: calc(20%);
  max-width: var(--dyte-space-48, 192px);
  transition: all 0.3s;
}

dyte-audio-tile[size='md'] {
  width: 100%;
  max-width: var(--dyte-space-36, 144px);
}

dyte-audio-tile[size='sm'] {
  width: 100%;
  max-width: var(--dyte-space-24, 96px);
}
