/* Show Page -------------------------------------------------------------- */
.videoshow_title {
  display: flex;
  gap: 15px;
}

.videoshow_title .video_profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  transition: all 0.3s ease;
}

    /* Screen sizes below 768px */
    @media (max-width: 768px) {
      .videoshow_title h1 {
        font-size: 1.8rem; /* Slightly smaller font size */
      }

      .videoshow_title .video_profile img {
        width: 55px; /* Reduce thumbnail size */
        height: 55px;
      }
    }

    /* Screen sizes below 576px */
    @media (max-width: 576px) {
      .videoshow_title h1 {
        font-size: 1.6rem; /* Further decrease font size */
      }

      .videoshow_title .video_profile img {
        width: 45px;
        height: 45px;
      }
    }

    /* Screen sizes below 400px */
    @media (max-width: 400px) {
      .videoshow_title h1 {
        font-size: 1.4rem; /* Smaller title font size for very small screens */
      }

      .videoshow_title .video_profile img {
        width: 40px;
        height: 40px;
      }
    }


/* Video and Description Container --------------------------------------- */
.showvideo {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}

/* Video Cell ------------------------------------------------------------ */
.showvideo .video-cell {
  width: 100%; /* Full width for responsiveness */
  padding: 0;
  margin: 0;
}

.showvideo .video-cell iframe {
  width: 100%; /* Full width for the iframe */
  aspect-ratio: 16 / 9; /* Maintain 16:9 aspect ratio */
  height: auto; /* Dynamically adjust height */
  border: none;
}

    @media (min-width: 1200px) {
      .showvideo {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
      }

      .showvideo .video-cell iframe {
        width: 826px; /* Set specific dimensions for larger screens */
        height: 465px; /* Maintain aspect ratio */
        max-width: 940px;
        margin: 0 auto;
        margin-right: 60px;
      }
    }

/* Description Cell ------------------------------------------------------ */
.showvideo .description-cell {
  width: 100%; /* Full width by default */
  /* padding-left: 20px; */
  margin-top: 0px;
}

    @media (max-width: 768px) {
      .showvideo {
        flex-direction: column; /* Stack video and description vertically */
      }

      .showvideo .description-cell {
        width: 100%; /* Full width on mobile */
        margin-top: 30px;
        padding: 0;
      }
    }



    @media (min-width: 1200px) {
      .showvideo .description-cell {
        max-width: 400px;
    }
  }



/* Description Content --------------------------------------------------- */
.showvideo .description-content {
  width: 100%;
  max-height: 400px;
  overflow-y: auto; /* Scrollable content */
  padding: 10px;
  margin: 0;
  box-sizing: border-box;
}

    @media (max-width: 768px) {
      .showvideo .description-content {
        padding: 2px 6px;
        height: auto;
        max-height: unset; /* Allow content to expand on smaller screens */
      }
    }

/* Customize the Scrollbar ----------------------------------------------- */
.showvideo .description-content::-webkit-scrollbar {
  width: 6px;
}

.showvideo .description-content::-webkit-scrollbar-thumb {
  background-color: #243042; /* Thumb color */
  border-radius: 10px;
}

.showvideo .description-content::-webkit-scrollbar-track {
  background-color: #e5ecf6; /* Track color */
  border-radius: 10px;
}

    @media (max-width: 768px) {
      .showvideo .description-content::-webkit-scrollbar {
        display: none; /* Hide scrollbar on mobile */
      }
    }

/* Footer (Button) ------------------------------------------------------- */
.showvideo .description-footer {
  text-align: center;
  margin-top: 40px;
}

.showvideo .description-footer .btn {
  background-color: #243042;
  color: #f8f9fa; /* White text */
  border: none; /* Remove border */
  padding: 10px 20px;
}

.showvideo .description-footer .btn:hover {
  background-color: #1a2631; /* Darker color on hover */
}

    @media (max-width: 768px) {
      .showvideo .description-footer .btn {
        margin-bottom: 20px;
      }
    }
