/* Playlist Details Component */

.playlist-wrapper {
  grid-row-gap: 74px;
  background-color: var(--color-black);
  border-radius: 30px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1024px;
  padding: 40px 60px 60px;
  text-decoration: none;
  display: flex;
}

.playlist-content {
  grid-row-gap: 80px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.playlist-info {
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.playlist-header {
  grid-row-gap: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.playlist-title-row {
  grid-column-gap: 7.6426px;
  color: var(--color-white);
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 7.6426px;
  padding-bottom: 7.6426px;
  text-decoration: none;
  display: flex;
}

.playlist-title-text {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Noto Sans, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  text-decoration: none;
}

.playlist-count-text {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Noto Sans, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.playlist-details {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.playlist-details a {
  color: white;
  text-decoration: none;
}

.playlist-details a:hover {
  text-decoration: underline;
}

.playlist-item-row {
  grid-column-gap: 35px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
  width: 100%;
}

.playlist-item-icon {
  object-fit: cover;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 16px;
  max-width: 100%;
  height: 16px;
  text-decoration: none;
  display: flex;
  overflow: visible;
}

/* Video Item Styles */
.video-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  transition: background-color 0.2s;
}

.video-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.video-number {
  min-width: 40px;
  color: #fff;
  font-family: Noto Sans, sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  padding-top: 8px;
}

.video-thumbnail {
  border-radius: 8px;
  object-fit: cover;
  width: 137px;
  height: 77px;
  flex-shrink: 0;
}

.video-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.video-title {
  color: #fff;
  font-family: Noto Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.video-title a {
  color: #fff;
  text-decoration: none;
}

.video-title a:hover {
  color: #fff600;
  text-decoration: underline;
}

.video-channel {
  color: #b3b3b3;
  font-family: Noto Sans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.stats-text {
  color: #000;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Droid Serif, serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
}

.stats-text-bold {
  color: #000;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Droid Serif, serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
}

