.glass-dialog {
  width: min(calc(100vw - 32px), 560px);
  max-height: min(86vh, 760px);
  overflow: visible;
  margin: auto;
  padding: 0;
  border: 0;
  color: #f7f8fa;
  background: transparent;
  font-family: "DM Sans", "Inter", system-ui, sans-serif;
}

.glass-dialog::backdrop {
  background: rgba(5, 13, 20, 0.58);
  -webkit-backdrop-filter: blur(18px) saturate(0.82);
  backdrop-filter: blur(18px) saturate(0.82);
}

.glass-dialog[open] {
  animation: dialog-arrive 180ms ease-out both;
}

.glass-dialog [hidden] {
  display: none !important;
}

.signup-button[hidden],
.comment-identity button[hidden],
[data-authenticated-only][hidden] {
  display: none !important;
}

/*
 * Shared account entry points
 * ---------------------------
 * The same compact glass controls are used in the landing, results, and
 * player headers. account.js supplies the signed-in name and hides Sign up
 * after authentication, so each page has one predictable account affordance.
 */
.header-account-actions {
  min-width: max-content;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  color: rgba(221, 229, 233, 0.78);
}

.header-account-actions .header-account-login,
.header-account-actions .header-account-signup {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  border: 1px solid rgba(214, 230, 236, 0.08);
  border-radius: 13px;
  color: rgba(232, 238, 241, 0.78);
  background: rgba(35, 57, 70, 0.1);
  box-shadow: inset 1px 1px 0 rgba(242, 250, 252, 0.025);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
  backdrop-filter: blur(10px) saturate(1.08);
  font: 650 13px/1 "DM Sans", "Inter", system-ui, sans-serif;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.header-account-actions .header-account-login {
  padding: 0 11px;
}

.header-account-actions .header-account-signup {
  min-width: 72px;
  padding: 0 13px;
  border-color: rgba(177, 158, 255, 0.2);
  color: rgba(211, 201, 255, 0.88);
  background: rgba(109, 84, 209, 0.08);
}

.header-account-actions .header-account-login svg {
  width: var(--interface-icon-size, 20px);
  height: var(--interface-icon-size, 20px);
  display: block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: var(--interface-icon-stroke, 1.5);
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.header-account-actions .header-account-login:hover,
.header-account-actions .header-account-login:focus-visible,
.header-account-actions .header-account-signup:hover,
.header-account-actions .header-account-signup:focus-visible {
  border-color: rgba(182, 165, 255, 0.42);
  color: #f8f9ff;
  background: rgba(116, 91, 217, 0.13);
  outline: 0;
  box-shadow: 0 0 18px rgba(130, 105, 244, 0.13);
}

.view-results .header-account-actions {
  grid-column: 4;
  justify-self: end;
  margin-right: clamp(18px, 2vw, 38px);
  opacity: 0.86;
  z-index: 3;
}

.player-header .header-account-actions {
  justify-self: end;
}

@media (max-width: 1100px) {
  .header-account-actions .header-account-login,
  .header-account-actions .header-account-signup {
    min-height: 38px;
    font-size: 12px;
  }

  .header-account-actions .header-account-login {
    padding-inline: 9px;
  }

  .header-account-actions .header-account-signup {
    min-width: 66px;
    padding-inline: 10px;
  }
}

@media (max-width: 760px) {
  .view-results .header-account-actions {
    grid-column: 3;
    grid-row: 1;
    margin-right: 8px;
  }
}

@media (max-width: 640px) {
  .header-account-actions {
    gap: 5px;
  }

  .header-account-actions .header-account-login,
  .header-account-actions .header-account-signup {
    min-height: 34px;
    border-radius: 11px;
    font-size: 11px;
  }

  .header-account-actions .header-account-login {
    gap: 5px;
    padding-inline: 7px;
  }

  .header-account-actions .header-account-login svg {
    width: var(--interface-icon-size, 20px);
    height: var(--interface-icon-size, 20px);
  }

  .header-account-actions .header-account-signup {
    min-width: 58px;
    padding-inline: 8px;
  }

  .view-results .header-account-actions {
    margin-right: 8px;
  }
}

.glass-dialog-shell {
  position: relative;
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: 42px;
  border: 1px solid rgba(218, 232, 238, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(75, 98, 111, 0.66), rgba(24, 37, 49, 0.72)),
    rgba(35, 52, 63, 0.68);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.48),
    0 0 54px rgba(130, 105, 244, 0.12),
    inset 0 1px 0 rgba(248, 252, 255, 0.1);
  -webkit-backdrop-filter: blur(26px) saturate(1.24);
  backdrop-filter: blur(26px) saturate(1.24);
}

.glass-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0 0 3px;
  border: 1px solid rgba(215, 230, 237, 0.12);
  border-radius: 50%;
  color: #e8eef1;
  background: rgba(18, 33, 44, 0.26);
  font: 300 28px/1 "Inter", sans-serif;
  cursor: pointer;
}

.glass-dialog-close:hover,
.glass-dialog-close:focus-visible {
  border-color: #a895ff;
  color: #fff;
  outline: 0;
  box-shadow: 0 0 20px rgba(153, 126, 255, 0.32);
}

.glass-dialog-close svg {
  width: var(--interface-icon-size, 20px);
  height: var(--interface-icon-size, 20px);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--interface-icon-stroke, 1.5);
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.account-brand {
  width: min(190px, 48%);
  height: auto;
  display: block;
  margin: 0 48px 24px 0;
  opacity: 0.94;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.24));
}

.glass-dialog-kicker {
  margin: 0 48px 10px 0;
  color: #b9aaff;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.glass-dialog-title {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 5vw, 38px);
  font-style: oblique 7deg;
  font-weight: 740;
  line-height: 1;
  letter-spacing: -0.045em;
}

.glass-dialog-copy {
  max-width: 430px;
  margin: 16px 0 26px;
  color: #c7d1d6;
  font-size: 14px;
  line-height: 1.5;
}

.account-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(212, 229, 236, 0.14);
}

.account-tabs button {
  position: relative;
  min-height: 46px;
  border: 0;
  color: #aebac0;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
}

.account-tabs button[aria-selected="true"] {
  color: #fff;
}

.account-tabs button[aria-selected="true"]::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: -1px;
  left: 18%;
  height: 2px;
  background: #a895ff;
  box-shadow: 0 0 14px rgba(168, 149, 255, 0.8);
}

.account-form {
  display: grid;
  gap: 16px;
}

.account-form label {
  display: grid;
  gap: 7px;
  color: #dce4e8;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.account-form > label > span,
.account-code-form label > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-inline: 7px;
}

.account-form em,
.account-code-form em,
.account-contact-method em {
  color: rgba(195, 184, 255, 0.76);
  font-size: 9px;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.account-form em.is-optional {
  color: rgba(180, 194, 201, 0.68);
}

.account-form input,
.account-code-form input,
.playlist-create-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 17px;
  border: 1px solid rgba(211, 228, 235, 0.09);
  border-radius: 8px;
  color: #fff;
  background: rgba(18, 33, 44, 0.42);
  box-shadow:
    inset 5px 5px 12px rgba(8, 19, 27, 0.34),
    inset -4px -4px 10px rgba(117, 145, 157, 0.08);
  font: inherit;
  font-size: 15px;
  outline: 0;
}

.account-form input:focus,
.account-code-form input:focus,
.playlist-create-form input:focus {
  border-color: rgba(168, 149, 255, 0.86);
  box-shadow:
    0 0 18px rgba(151, 122, 255, 0.18),
    inset 5px 5px 12px rgba(8, 19, 27, 0.34);
}

.account-contact-method {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.account-contact-method legend {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-inline: 7px;
  color: #dce4e8;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.account-contact-method > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 8px;
}

.account-contact-method label {
  position: relative;
  display: block;
}

.account-contact-method input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.account-contact-method label > span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(207, 222, 229, 0.11);
  border-radius: 8px;
  color: rgba(216, 227, 232, 0.72);
  background: rgba(18, 33, 44, 0.2);
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.account-contact-method input:checked + span {
  border-color: rgba(174, 156, 255, 0.68);
  color: #f7f5ff;
  background: rgba(112, 87, 218, 0.14);
  box-shadow: 0 0 18px rgba(139, 110, 255, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.account-contact-method input:focus-visible + span {
  outline: 2px solid rgba(189, 176, 255, 0.72);
  outline-offset: 2px;
}

.account-field-note {
  margin: -7px 0 0;
  color: #96a5ad;
  font-size: 11px;
}

.account-forgot-password {
  width: fit-content;
  margin-top: -7px;
  color: #b9abff;
  font-size: 12px;
  font-weight: 650;
  text-underline-offset: 3px;
}

.account-forgot-password:hover,
.account-forgot-password:focus-visible {
  color: #e1dbff;
}

.account-submit,
.account-logout,
.playlist-save-button,
.playlist-create-form button {
  min-height: 50px;
  border: 1px solid rgba(188, 173, 255, 0.58);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(129, 102, 238, 0.2), rgba(69, 55, 133, 0.13)),
    rgba(28, 43, 56, 0.28);
  box-shadow:
    0 0 24px rgba(139, 110, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  backdrop-filter: blur(12px) saturate(1.15);
  font: inherit;
  font-size: 14px;
  font-weight: 720;
  cursor: pointer;
}

.account-submit {
  margin-top: 4px;
}

.account-submit:hover,
.account-submit:focus-visible,
.account-logout:hover,
.account-logout:focus-visible,
.playlist-save-button:hover,
.playlist-save-button:focus-visible,
.playlist-create-form button:hover,
.playlist-create-form button:focus-visible {
  border-color: #c4b6ff;
  background:
    linear-gradient(135deg, rgba(139, 111, 246, 0.29), rgba(80, 64, 148, 0.19)),
    rgba(31, 47, 60, 0.36);
  outline: 0;
  box-shadow: 0 0 28px rgba(151, 122, 255, 0.3);
}

.account-submit:disabled,
.account-logout:disabled,
.playlist-create-form button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.playlist-save-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  box-shadow: none;
}

.glass-dialog-status {
  min-height: 18px;
  margin: 18px 0 0;
  color: #cbd5d9;
  font-size: 12px;
  line-height: 1.4;
}

.glass-dialog-status[data-type="error"] {
  color: #ffc4cd;
}

.glass-dialog-status[data-type="success"] {
  color: #c8ffdd;
}

/*
 * Compact account entry
 * ---------------------
 * Authentication has more vertical structure than the playlist dialog. Keep
 * its primary action visible in ordinary desktop viewports while retaining
 * shell scrolling as a safety net on unusually short screens.
 */
.account-dialog .glass-dialog-shell {
  max-height: min(92vh, 820px);
  padding: 34px 38px 30px;
}

.account-dialog-intro {
  padding-right: 52px;
}

.account-dialog .account-brand {
  width: min(158px, 42%);
  margin: 0 0 20px;
}

.account-dialog .glass-dialog-title {
  font-size: clamp(29px, 4vw, 36px);
  font-style: normal;
  line-height: 1.04;
}

.account-dialog .glass-dialog-copy {
  max-width: 390px;
  margin: 10px 0 22px;
  font-size: 14px;
  line-height: 1.5;
}

.account-dialog .account-tabs {
  margin-bottom: 18px;
}

.account-dialog .account-tabs button {
  min-height: 44px;
}

.account-dialog .account-form {
  gap: 14px;
}

.account-dialog .account-form label {
  gap: 7px;
}

.account-dialog .account-form input,
.account-dialog .account-code-form input {
  min-height: 48px;
}

.account-dialog .account-contact-method > div {
  margin-top: 6px;
}

.account-dialog .account-contact-method label > span {
  min-height: 40px;
}

.account-dialog .account-field-note {
  margin: -3px 0 0;
}

.account-dialog .account-submit {
  min-height: 48px;
  margin-top: 2px;
}

.account-dialog .glass-dialog-status {
  min-height: 14px;
  margin-top: 10px;
}

.account-profile-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.account-profile-initial {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(198, 184, 255, 0.54);
  border-radius: 50%;
  color: #fff;
  background: rgba(111, 84, 221, 0.28);
  box-shadow: 0 0 30px rgba(143, 113, 255, 0.2);
  font-size: 24px;
  font-weight: 740;
}

.account-profile-email {
  margin: 8px 0 0;
  color: #aebbc1;
  font-size: 13px;
}

.account-library-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 18px;
  padding: 20px 0;
  border-block: 1px solid rgba(214, 230, 236, 0.12);
  color: #c7d1d6;
  font-size: 14px;
}

.account-verified-mark {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 0;
  color: #c9ffe0;
  font-size: 12px;
  font-weight: 700;
}

.account-verified-mark span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(173, 255, 210, 0.44);
  border-radius: 50%;
  background: rgba(76, 174, 119, 0.18);
}

.account-verified-mark svg {
  width: var(--interface-icon-size-compact, 16px);
  height: var(--interface-icon-size-compact, 16px);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--interface-icon-stroke, 1.5);
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.account-library-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.account-library-grid > span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.account-library-grid small {
  color: #aebbc1;
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.account-verification-title {
  margin: 4px 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: 740;
}

.account-verification-view .glass-dialog-copy strong {
  color: #f2efff;
  font-weight: 720;
}

.account-code-form {
  display: grid;
  gap: 16px;
}

.account-code-form label {
  display: grid;
  gap: 7px;
  color: #dce4e8;
  font-size: 12px;
  font-weight: 650;
}

.account-code-input {
  text-align: center;
  font-size: 24px !important;
  font-weight: 740 !important;
  letter-spacing: 0.28em;
}

.account-local-code {
  margin: 13px 0 0;
  padding: 10px 12px;
  border: 1px dashed rgba(185, 170, 255, 0.32);
  border-radius: 7px;
  color: rgba(219, 211, 255, 0.82);
  background: rgba(75, 58, 142, 0.11);
  font-size: 11px;
  text-align: center;
}

.account-resend {
  width: 100%;
  min-height: 48px;
  display: grid;
  place-items: center;
  margin-top: 10px;
  border: 1px solid rgba(188, 173, 255, 0.38);
  border-radius: 8px;
  color: #fff;
  background: rgba(107, 82, 214, 0.34);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.account-resend {
  background: rgba(23, 39, 51, 0.34);
}

.account-recent-searches {
  margin: -4px 0 22px;
}

.account-recent-searches p {
  margin: 0 0 9px;
  color: #aebbc1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-recent-searches div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.account-recent-searches a {
  padding: 7px 10px;
  border: 1px solid rgba(210, 225, 232, 0.1);
  border-radius: 6px;
  color: #e9e4ff;
  background: rgba(27, 43, 54, 0.26);
  font-size: 11px;
  text-decoration: none;
}

.account-library-summary strong {
  color: #c8bcff;
  font-size: 22px;
}

.account-logout {
  width: 100%;
  background: rgba(32, 47, 58, 0.38);
}

.playlist-video-title {
  margin: 14px 0 24px;
  overflow: hidden;
  color: #c4d0d5;
  font-size: 13px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.playlist-list {
  display: grid;
  gap: 9px;
  max-height: 290px;
  overflow: auto;
  padding: 12px;
}

.playlist-picker {
  overflow: hidden;
  border: 1px solid rgba(217, 231, 237, 0.13);
  border-radius: 9px;
  background: rgba(14, 28, 39, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.playlist-selection-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.playlist-save-button {
  width: 100%;
  margin: 0;
}

.playlist-choice {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(217, 231, 237, 0.11);
  border-radius: 7px;
  color: #f6f8fa;
  background: rgba(24, 40, 51, 0.31);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.playlist-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.playlist-choice-mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(197, 211, 219, 0.32);
  border-radius: 5px;
  color: transparent;
  background: rgba(7, 18, 29, 0.28);
  transition: border-color 140ms ease, color 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
}

.playlist-choice-mark svg {
  width: var(--interface-icon-size-compact, 16px);
  height: var(--interface-icon-size-compact, 16px);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: var(--interface-icon-stroke, 1.5);
}

.playlist-choice input:checked + .playlist-choice-mark {
  border-color: rgba(193, 173, 255, 0.92);
  color: #fff;
  background: rgba(119, 89, 232, 0.52);
  box-shadow: 0 0 18px rgba(151, 119, 255, 0.32);
}

.playlist-choice input:focus-visible + .playlist-choice-mark {
  outline: 2px solid rgba(195, 179, 255, 0.82);
  outline-offset: 3px;
}

.playlist-choice:hover,
.playlist-choice:focus-visible {
  border-color: rgba(176, 157, 255, 0.74);
  outline: 0;
  background: rgba(102, 78, 205, 0.22);
  box-shadow: 0 0 22px rgba(145, 115, 255, 0.16);
}

.playlist-choice-name {
  min-width: 0;
  flex: 1 1 auto;
  font-size: 14px;
  font-weight: 680;
}

.playlist-choice small {
  color: #9dabb2;
  font-size: 11px;
  white-space: nowrap;
}

.playlist-empty {
  margin: 0;
  padding: 24px 16px;
  border: 1px dashed rgba(215, 230, 236, 0.14);
  border-radius: 7px;
  color: #aebbc1;
  font-size: 13px;
  text-align: center;
}

.playlist-create-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  grid-column: 1 / -1;
  color: #aebbc1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.playlist-create-heading small {
  color: rgba(178, 192, 199, 0.62);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-align: right;
  text-transform: none;
}

.playlist-create-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 144px;
  gap: 10px;
  margin: 0;
  padding: 15px 16px 16px;
  border-top: 1px solid rgba(217, 231, 237, 0.12);
  background: rgba(18, 33, 44, 0.26);
}

.playlist-dialog-footer {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(217, 231, 237, 0.12);
}

.playlist-dialog-footer .glass-dialog-status {
  min-height: 18px;
  margin: 0;
}

@keyframes dialog-arrive {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 560px) {
  .glass-dialog {
    width: min(calc(100vw - 20px), 560px);
  }

  .glass-dialog-shell {
    padding: 34px 22px 24px;
    border-radius: 9px;
  }

  .glass-dialog-close {
    top: 12px;
    right: 12px;
  }

  .account-brand {
    margin-bottom: 20px;
  }

  .account-dialog .glass-dialog-shell {
    padding: 28px 20px 22px;
  }

  .account-dialog-intro {
    padding-right: 44px;
  }

  .account-dialog .account-brand {
    width: min(148px, 48%);
    margin-bottom: 16px;
  }

  .account-dialog .glass-dialog-copy {
    margin-bottom: 18px;
  }

  .account-dialog .account-tabs {
    margin-bottom: 14px;
  }

  .account-dialog .account-form {
    gap: 12px;
  }

  .playlist-create-form {
    grid-template-columns: 1fr;
  }

  .playlist-create-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .playlist-create-heading small {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glass-dialog[open] {
    animation: none;
  }
}
