/** 2023-06-01 ERD: Start Clickshare preview sign-in box **/
.paywall-preview {
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 10px;
}

.logInSection{
    margin-top: 10px;
}

.previewHeader {
    font-size: 22px;
    font-family: 'Playfair Display', serif;
}

.previewSubhead {
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0;
}

.preview-sign-in {
    background-color: #f0f0f0;
    margin: 25px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
  
  .preview-sign-in .signin-button {
    margin-top: 8px;
  }
  
.signin-button {
    background-color: #5b93c6;
    color: #fff;
    margin: 10px 20px;
    border: none;
    width: 250px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signin-button:hover {
    background-color: #0056b3;
}
.previewText {
    font-style: italic;
    font-size: medium;
    margin: 0;
    line-height: normal; 
}

em {
    font-style: italic;
    font-size: 14px;
}

.or-line-container {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.or-line {
    flex: 1;
    height: 1px;
    background-color: #ccc;
}

.or-text {
    margin: 0 10px;
    font-weight: bold;
    font-size: 14px;
    color: #777;
}

.previewLogo {
    max-height: 30px;
    width: auto;
}

/* Initial state for blurred text */
.blurry-text {
    text-shadow: 2px 7px 7px black;
    color: transparent;
    filter: blur(0); /* Set initial blur radius to 0 */
    pointer-events: none;
  }
  
  /* Apply blur when class 'blurred' is added */
  .blurred .blurry-text {
    filter: blur(3px); /* Adjust the blur radius as needed */
  }
  
  .blurry-text a {
    display: none;
  }
  
  /* Disable text selection to prevent text from being dragged */
  .blurry-text::selection {
    background-color: transparent;
    color: inherit;
  }

/* Style for the playlist container */
.playlist-container {
    margin-bottom: 20px;
    position: relative; /* Needed for positioning the swiper-scrollbar */
    width: 100vw;
}

/* Style for the Swiper */
.swiper-container {
    width: 100vw;
    padding: 20px;
    background-color: #f5f5f5; /* Add your background color here */
    border-radius: 10px;
    position: relative; /* Needed for absolute positioning of children */
}

/* Style for the Swiper scrollbar */
.swiper-scrollbar {
    background-color: #e0e0e0; /* Background color for the scrollbar */
    width: 10px; /* Adjust the width as needed */
    position: absolute;
    top: 20px; /* Adjust the top position */
    right: 20px; /* Adjust the right position */
    border-radius: 5px;
    overflow-y: auto; /* Enable vertical scrolling */
    max-height: 80%; /* Limit the scrollbar's height as needed */
    z-index: 1 !important; 
}

/* Style for the swiper-wrapper (the content) */
.swiper-wrapper {
    display: flex;
    flex-wrap: nowrap; /* Ensure the cards stay on one line */
}

/* Style for each video card */
.yt-card {
    background-color: #fff; /* Change the background color */
    border: 1px solid #ddd; /* Add border or box shadow for each card */
    border-radius: 5px;
    padding-top:5px;
    padding-bottom: 5px;
    text-align: center;
    width: 350px;
}

.yt-card img {
    max-width:100%;
    height: auto;
    border-radius: 5px; /* Round the image corners if needed */
}

.yt-card h5 {
    font-size: 20px; /* Adjust the font size as needed */
    margin-top: 10px;
    text-decoration:none;
    white-space: nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    padding-left:5px;
    padding-right:5px;
    font-family: Lato;
    color: #2f2f2f;
    font-size:18px;
}
.swiper-slide {
    width: auto;
}
 .yt-card a {
    text-decoration:none;
    white-space: nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.playlist-title {
    font-family: 'Playfair Display', serif;
    color: black;
    font-size: 28px;
    padding-left:10px;
}