:root {
  --pv-bg: #0f1116;
  --pv-panel: rgba(22, 25, 31, 0.95);
  --pv-border: rgba(255, 255, 255, 0.08);
  --pv-text: #f4f6fb;
  --pv-text-muted: rgba(244, 246, 251, 0.65);
  --pv-accent: #7f8cff;
  --pv-danger: #ff637a;
  --pv-chip-bg: rgba(255, 255, 255, 0.08);
  --pv-chip-border: rgba(255, 255, 255, 0.14);
  --pv-focus: rgba(127, 140, 255, 0.45);
  --pv-grid-gap: clamp(16px, 1.5vw, 24px);
}

body.dark .profile-channel {
  color: var(--pv-text);
}

.profile-channel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: transparent;
}

#videosChannel {
  display: block;
}

#profileVideosRoot {
  width: 100%;
}

.profile-channel__header {
  background: var(--pv-panel);
  border: 1px solid var(--pv-border);
  border-radius: 18px;
  padding: clamp(20px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.profile-channel__header-top {
  display: flex;
  gap: 16px;
  align-items: center;
}

.profile-channel__avatar {
  width: clamp(72px, 6vw, 96px);
  height: clamp(72px, 6vw, 96px);
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  border: 2px solid var(--pv-border);
}



.profile-channel__avatar--editable {
  position: relative;
  cursor: pointer;
}

.profile-channel__avatar--editable .profile-channel__avatar-edit {
  position: absolute;
  right: 6px;
  bottom: 6px;
  border: none;
  border-radius: 999px;
  background: rgba(15, 17, 25, 0.85);
  color: var(--pv-text);
  padding: 4px 10px;
  font-size: 0.75rem;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

.profile-channel__avatar--editable .profile-channel__avatar-edit:hover,
.profile-channel__avatar--editable .profile-channel__avatar-edit:focus {
  background: rgba(127, 140, 255, 0.75);
  outline: none;
}

.profile-channel__avatar-status {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--pv-text-muted);
  white-space: nowrap;
}

.profile-channel__avatar-status.error {
  color: var(--pv-danger);
}

.profile-channel__avatar--uploading img {
  filter: brightness(0.55);
}

.profile-channel__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-channel__identity {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-channel__name {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 600;
  margin: 0;
}

.profile-channel__handle {
  color: var(--pv-text-muted);
  margin: 0;
}

.profile-channel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.profile-channel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-channel__chip {
  background: var(--pv-chip-bg);
  border: 1px solid var(--pv-chip-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.profile-channel__chip strong {
  font-weight: 600;
}

.profile-channel__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-channel__cta button {
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid var(--pv-border);
  background: transparent;
  color: var(--pv-text);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.profile-channel__cta button.primary {
  background: linear-gradient(120deg, rgba(127, 140, 255, 0.9), rgba(114, 192, 255, 0.7));
  border-color: transparent;
}

.profile-channel__cta button:hover,
.profile-channel__cta button:focus {
  outline: none;
  transform: translateY(-1px);
  border-color: var(--pv-focus);
  box-shadow: 0 0 0 3px rgba(127, 140, 255, 0.2);
}

.profile-channel__subnav {
  position: sticky;
  top: 80px;
  background: rgba(12, 14, 19, 0.85);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 6px;
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  row-gap: 6px;
  border: 1px solid var(--pv-border);
  z-index: 5;
}

.profile-channel__subnav button {
  border: none;
  background: transparent;
  color: var(--pv-text-muted);
  padding: 10px 16px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.profile-channel__subnav button[aria-selected="true"] {
  background: rgba(127, 140, 255, 0.18);
  color: var(--pv-text);
}

.profile-channel__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.profile-channel__sections {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.profile-channel__section.hidden {
  display: none;
}

.profile-channel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--pv-grid-gap);
}

.profile-channel__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.profile-channel__filters select,
.profile-channel__filters input[type="search"] {
  background: var(--pv-panel);
  border: 1px solid var(--pv-border);
  border-radius: 10px;
  padding: 8px 12px;
  color: var(--pv-text);
}

.profile-channel__filters select:focus,
.profile-channel__filters input[type="search"]:focus {
  outline: 2px solid var(--pv-focus);
  outline-offset: 2px;
}

.profile-channel__filters .chip-toggle {
  border-radius: 999px;
  border: 1px solid var(--pv-border);
  background: transparent;
  padding: 6px 14px;
  color: var(--pv-text-muted);
  cursor: pointer;
}

.profile-channel__filters .chip-toggle[aria-pressed="true"] {
  background: rgba(127, 140, 255, 0.2);
  color: var(--pv-text);
  border-color: rgba(127, 140, 255, 0.3);
}

.profile-channel__empty {
  text-align: center;
  padding: 60px 20px;
  border: 1px dashed var(--pv-border);
  border-radius: 16px;
  color: var(--pv-text-muted);
}

.profile-channel__fallback {
  text-align: center;
  padding: 40px 20px;
  color: var(--pv-text-muted);
  font-size: 0.95rem;
}

.profile-channel__about {
  background: var(--pv-panel);
  border-radius: 18px;
  border: 1px solid var(--pv-border);
  padding: clamp(20px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.profile-channel__report {
  align-self: flex-start;
  border: 1px solid var(--pv-border);
  border-radius: 10px;
  padding: 8px 14px;
  background: transparent;
  color: var(--pv-text-muted);
  cursor: pointer;
}

.profile-channel__report:hover,
.profile-channel__report:focus {
  color: var(--pv-danger);
  border-color: var(--pv-danger);
  outline: none;
}

.profile-channel__about textarea,
.profile-channel__about input[type="url"] {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--pv-border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--pv-text);
}

.profile-channel__about-editor {
  display: grid;
  gap: 12px;
}

.profile-channel__about-editor button {
  justify-self: flex-start;
}

.profile-channel__about-status {
  font-size: 0.85rem;
  color: var(--pv-text-muted);
}

.profile-channel__about-status.error {
  color: var(--pv-danger);
}

.profile-channel__about textarea:focus,
.profile-channel__about input[type="url"]:focus {
  outline: 2px solid var(--pv-focus);
  outline-offset: 2px;
}

.profile-channel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-channel__tag {
  border-radius: 999px;
  border: 1px solid var(--pv-border);
  padding: 4px 12px;
  cursor: pointer;
  color: var(--pv-text-muted);
  background: rgba(0, 0, 0, 0.15);
}

.profile-channel__tag:hover,
.profile-channel__tag:focus {
  color: var(--pv-text);
  border-color: rgba(127, 140, 255, 0.4);
  outline: none;
}

.profile-channel__insights {
  display: grid;
  gap: 20px;
}

.profile-channel__insights .kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.profile-channel__kpi {
  border-radius: 14px;
  background: var(--pv-panel);
  padding: 16px;
  border: 1px solid var(--pv-border);
}

.profile-channel__kpi h4 {
  margin: 0 0 6px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pv-text-muted);
}

.profile-channel__kpi strong {
  font-size: 1.35rem;
}

.profile-channel__top-table {
  width: 100%;
  border-collapse: collapse;
}

.profile-channel__top-table th,
.profile-channel__top-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--pv-border);
}

.profile-channel__pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.profile-channel__pagination button {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--pv-border);
  background: transparent;
  color: var(--pv-text);
  cursor: pointer;
}

.profile-channel__loader {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--pv-grid-gap);
}

.video-card,
.playlist-card {
  background: var(--pv-panel);
  border: 1px solid var(--pv-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.video-card__thumb,
.playlist-card__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.video-card.video-card--vito .video-card__thumb {
  aspect-ratio: 9 / 16;
}

.video-card__thumb img,
.playlist-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.video-card__thumb:hover img,
.playlist-card__thumb:hover img,
.playlist-card__thumb:focus img {
  transform: scale(1.05);
}

.playlist-card__thumb:focus {
  outline: 2px solid var(--pv-focus);
  outline-offset: 2px;
}

.video-card__duration,
.playlist-card__count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(10, 10, 12, 0.8);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.78rem;
}

.video-card__thumb-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.24s ease;
  background: #000;
}

.video-card--previewing .video-card__thumb-preview {
  opacity: 1;
}

.video-card--previewing .video-card__thumb img {
  opacity: 0;
}

.video-card__thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 8, 16, 0.05), rgba(6, 8, 16, 0.55));
  color: #f4f6ff;
  opacity: 0.85;
  transition: opacity 0.24s ease;
}

.video-card__thumb-icon {
  font-size: 2.25rem;
  line-height: 1;
}

.video-card--previewing .video-card__thumb-overlay {
  opacity: 0.35;
}

.video-card__body,
.playlist-card__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video-card__actions {
  margin-top: auto;
  padding: 0 18px 18px;
  display: flex;
  justify-content: flex-end;
}

.video-card__manage {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pv-accent);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px 14px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.video-card__manage:hover,
.video-card__manage:focus {
  background: var(--pv-accent);
  color: var(--pv-panel);
}

.video-card__title {
  color: var(--pv-text);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.3;
}

.video-card__title:hover,
.video-card__title:focus {
  text-decoration: underline;
}

.video-card__meta {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--pv-text-muted);
}

.playlist-card__title {
  margin: 0;
  font-weight: 600;
}

.playlist-card__meta {
  font-size: 0.82rem;
  color: var(--pv-text-muted);
}

.playlist-card__description {
  font-size: 0.9rem;
  color: var(--pv-text-muted);
}

.playlist-card__owner {
  font-size: 0.78rem;
  color: var(--pv-text-muted);
  text-transform: uppercase;
}

.subscribe-button {
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(120deg, rgba(127, 140, 255, 0.9), rgba(114, 192, 255, 0.7));
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.subscribe-button.is-active {
  background: rgba(127, 140, 255, 0.2);
  color: var(--pv-text);
  border: 1px solid rgba(127, 140, 255, 0.4);
}

.subscribe-button.loading {
  opacity: 0.6;
  cursor: wait;
}

.subscribe-button:hover,
.subscribe-button:focus {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(127, 140, 255, 0.2);
  outline: none;
}

.inline-chart {
  background: rgba(12, 14, 19, 0.6);
  border: 1px solid var(--pv-border);
  border-radius: 14px;
  padding: 14px 16px;
}

.inline-chart--bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inline-chart__row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.inline-chart__label {
  min-width: 120px;
  font-size: 0.85rem;
  color: var(--pv-text-muted);
}

.inline-chart__bar {
  position: relative;
  flex: 1;
  height: 8px;
  border-radius: 8px;
  background: rgba(127, 140, 255, 0.2);
  overflow: hidden;
}

.inline-chart__bar span {
  position: absolute;
  top: -22px;
  right: 0;
  font-size: 0.75rem;
  color: var(--pv-text-muted);
}

.inline-chart__bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(127, 140, 255, 0.8), rgba(114, 192, 255, 0.8));
  transform-origin: left;
  transform: scaleX(var(--value, 0));
  transition: transform 0.3s ease;
}

.inline-chart--spark {
  display: inline-block;
  width: 100%;
}

.profile-channel__skeleton {
  border-radius: 12px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.08) 25%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.08) 75%);
  background-size: 200% 100%;
  animation: pv-shimmer 1.6s infinite;
  min-height: 180px;
}

@keyframes pv-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 960px) {
  .profile-channel__header {
    padding: 18px;
  }
  .profile-channel__header-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .profile-channel__cta {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .profile-channel__subnav {
    position: static;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.skeleton {
  position: relative;
  display: block;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border-radius: 8px;
  min-height: 12px;
}

.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  animation: pv-shimmer 1.3s infinite;
}

.skeleton--circle {
  border-radius: 999px;
}

.skeleton--rounded {
  border-radius: 14px;
}

.skeleton--pill {
  border-radius: 999px;
}

@keyframes pv-shimmer {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}

.profile-channel__header-skeleton {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.profile-channel__header-skeleton-cta {
  display: flex;
  justify-content: flex-start;
}

.profile-channel__header-skeleton-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.profile-channel__header-skeleton-actions .skeleton--rounded {
  height: 38px;
  min-width: 120px;
}

.profile-channel__card-skeleton {
  display: grid;
  gap: 12px;
}

.profile-channel__card-skeleton--inline {
  background: rgba(255, 255, 255, 0.03);
  padding: 0;
}

.profile-channel__card-skeleton--inline .skeleton--rounded {
  height: 140px;
}

.profile-channel__about-skeleton,
.profile-channel__insights-skeleton {
  display: grid;
  gap: 14px;
}

.profile-channel__insights .hidden,
.profile-channel__about .hidden {
  display: none !important;
}

.playlist-drawer {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

.playlist-drawer-open .playlist-drawer {
  display: flex;
}

.playlist-drawer.hidden {
  display: none !important;
}

.playlist-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.playlist-drawer__panel {
  position: relative;
  background: #151822;
  border-radius: 20px 0 0 20px;
  border: 1px solid var(--pv-border);
  width: min(480px, 90vw);
  min-height: 100vh;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  margin-left: auto;
}

.playlist-drawer__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.playlist-drawer__title-block h3 {
  margin: 0;
  font-size: 1.35rem;
}

.playlist-drawer__title-block p {
  margin: 6px 0 0;
  color: var(--pv-text-muted);
}

.playlist-drawer__header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.playlist-drawer__header-actions .ghost {
  border: 1px solid var(--pv-border);
  border-radius: 10px;
  background: transparent;
  color: var(--pv-text);
  padding: 6px 12px;
  cursor: pointer;
}

.playlist-drawer__header-actions .ghost.icon {
  font-size: 1.4rem;
  line-height: 1;
}

.playlist-drawer__header-actions .ghost.danger {
  color: var(--pv-danger);
  border-color: rgba(255, 99, 122, 0.5);
}

.playlist-drawer__body {
  flex: 1 1 auto;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 4px;
}

.playlist-drawer__list {
  display: grid;
  gap: 12px;
}

.playlist-drawer__item {
  display: grid;
  grid-template-columns: auto 120px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.playlist-drawer__item.is-dragging {
  opacity: 0.65;
}

.playlist-drawer__item button.ghost {
  border: 1px solid var(--pv-border);
  border-radius: 10px;
  background: transparent;
  color: var(--pv-text);
  padding: 6px 12px;
  cursor: pointer;
}

.playlist-drawer__drag-handle {
  cursor: grab;
  font-size: 1.25rem;
  color: var(--pv-text-muted);
}

.playlist-drawer__thumb {
  position: relative;
  width: 120px;
  height: 68px;
  border-radius: 12px;
  overflow: hidden;
}

.playlist-drawer__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.playlist-drawer__thumb-duration {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.75);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.7rem;
}

.playlist-drawer__item-content h4 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.playlist-drawer__item-content p {
  margin: 0;
  color: var(--pv-text-muted);
  font-size: 0.85rem;
}

.playlist-drawer__empty {
  padding: 40px 16px;
  text-align: center;
  color: var(--pv-text-muted);
  border: 1px dashed var(--pv-border);
  border-radius: 12px;
}

.playlist-drawer__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.playlist-drawer__status {
  color: var(--pv-text-muted);
  font-size: 0.85rem;
}

.playlist-drawer__footer .primary {
  border-radius: 12px;
  padding: 10px 18px;
  border: none;
  background: linear-gradient(120deg, rgba(127, 140, 255, 0.9), rgba(114, 192, 255, 0.7));
  color: var(--pv-text);
  cursor: pointer;
}

.playlist-form-modal {
  background: #181b29;
  width: 420px;
  max-width: 92vw;
  border-radius: 20px;
  border: 1px solid var(--pv-border);
}

.playlist-form-modal label {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--pv-text-muted);
}

.playlist-form-modal input,
.playlist-form-modal textarea,
.playlist-form-modal select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--pv-border);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--pv-text);
}

.playlist-form-modal textarea {
  resize: vertical;
}

.playlist-form-modal .modal-actions button {
  border-radius: 10px;
}

.playlist-form-modal .modal-actions button[type="submit"] {
  background: linear-gradient(120deg, rgba(127, 140, 255, 0.9), rgba(114, 192, 255, 0.7));
  color: var(--pv-text);
}

.profile-upload-modal {
  background: #181b29;
  width: 480px;
  max-width: 95vw;
  border-radius: 20px;
  border: 1px solid var(--pv-border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.profile-upload-modal h3 {
  margin: 0;
}

.profile-upload-modal label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--pv-text-muted);
}

.profile-upload-modal input,
.profile-upload-modal textarea,
.profile-upload-modal select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--pv-border);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--pv-text);
}

.profile-upload-modal textarea {
  resize: vertical;
}

.profile-upload-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.profile-upload-modal .modal-actions button {
  border-radius: 10px;
}

.profile-upload-modal .modal-actions [data-submit] {
  background: linear-gradient(120deg, rgba(127, 140, 255, 0.9), rgba(114, 192, 255, 0.7));
  color: var(--pv-text);
  border: none;
}

.profile-channel__upload-status {
  font-size: 0.85rem;
  color: var(--pv-text-muted);
}

.profile-channel__upload-status.error {
  color: var(--pv-danger);
}

body.profile-upload-open {
  overflow: hidden;
}

.playlist-drawer__item--skeleton {
  background: transparent;
  border: none;
  padding: 0;
}

.playlist-drawer__item--skeleton .skeleton {
  height: 72px;
}

body.playlist-drawer-open,
body.playlist-form-open {
  overflow: hidden;
}

.playlist-drawer__item--readonly {
  grid-template-columns: 120px 1fr;
}

.playlist-drawer__item--readonly .playlist-drawer__thumb {
  grid-column: 1;
}

.playlist-drawer__item--readonly .playlist-drawer__item-content {
  grid-column: 2;
}