.hide-video-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin-top: -4px;
  border: 1px solid rgba(255, 81, 120, 0.16);
  border-radius: 9999px;
  background: rgba(255, 81, 120, 0.06);
  color: rgba(255, 154, 180, 0.88);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}

.hide-video-action:hover,
.hide-video-action:focus-visible {
  background: rgba(255, 81, 120, 0.1);
  border-color: rgba(255, 81, 120, 0.28);
  color: rgba(255, 190, 205, 0.98);
  outline: none;
}

.hide-video-action.is-confirmed {
  border-color: rgba(255, 81, 120, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.64);
}

.hidden-videos {
  width: 100%;
  max-width: 600px;
  margin: 18px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.hidden-videos__header {
  margin-bottom: 12px;
}

.hidden-videos__title {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hidden-videos__list {
  display: grid;
  gap: 8px;
}

.hidden-videos__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hidden-videos__item:first-child {
  border-top: 0;
  padding-top: 0;
}

.hidden-videos__label {
  min-width: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hidden-videos__remove {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: rgba(255, 124, 171, 0.78);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 150ms ease;
}

.hidden-videos__remove:hover,
.hidden-videos__remove:focus-visible {
  color: rgba(255, 124, 171, 0.98);
  outline: none;
}

@media (max-width: 640px) {
  .hidden-videos {
    margin-top: 16px;
    padding: 16px;
  }

  .hidden-videos__item {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}
