body {
  background-color: #253245;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

footer {
  justify-content: center;
  text-align: center;
  color: #fff;
}

.footer {
  justify-content: center;
  text-align: center;
  color: #fff;
}

.main-menu {
  align-items: start;
  width: 50px;
  height: 50px;
  display: block;
}

.content {
  justify-content: center;
}

.main-container {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.video-player-section {
  flex: 3;
}
#main-video {
  width: 100%;
  border-radius: 8px;
  background: black;
}

.playlist {
  flex: 1;
  background: #252525;
  padding: 15px;
  border-radius: 8px;
  max-height: 80vh;
  overflow-y: auto;
}

.playlist-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #333;
  transition: background 0.3s;
}

.playlist-item:hover {
  background: #3d3d3d;
}

.playlist-item.active {
  background: #4a4a4a;
  border-left: 4px solid #00a8ff;
}

.playlist-item img {
  width: 100px;
  border-radius: 4px;
}

.playlist-item h4 {
  margin: 0;
  font-size: 14px;
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9; /* Esto mantiene la forma de video automáticamente */
  background: black;
  border-radius: 8px;
  overflow: hidden;
}

#player {
  width: 100%;
  height: 100%;
}
