#image1{
    width: 70px;
    height: 70px; 
    margin: auto;
}
.height{
    display: inline-block; vertical-align: middle;
}
.two {
    margin-top: -16px;
    text-align: center;
}
.two img{
    margin: auto; 
    display: block;
}
.show_Box{
    margin-top: 20px; 
    display: inline-block;
    text-align: center;
    justify-content:center;
    align-items:center;
}
.buttonClass{
    margin-top: 20px; 
    margin: auto;
    display:flex;
    justify-content:center;
    align-items:center;
}
.division1{
   text-align: center;
}
.logo_div{
    display: inline-block; text-align: left;
}




/* Related Channels Container */
.related-channel-container {
    display: flex;
    overflow-x: auto;
    padding: 10px;
    background: #f9f9f9;
    margin: 10px;
    gap: 20px; /* Adds space between channel items */
    position: relative; /* Needed for absolute positioning of children */
}

/* Individual Channel Items in the Related Section */
.related-channel-item {
    flex-shrink: 0;
    text-align: center;
    width: 120px; /* Fixed width for each item */
    background: #ffffff; /* Background color for contrast */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transitions for hover effects */
}

.related-channel-item img {
    width: 100%;
    height: 100px; /* Fixed height */
    object-fit: cover; /* Ensure images cover the area without distortion */
    border-radius: 8px 8px 0 0; /* Top rounded corners for the image */
}

.related-channel-item p {
    font-size: 14px;
    color: #333;
    padding: 5px;
    margin: 0;
    overflow: hidden; /* Ensures text does not overflow the content area */
    white-space: nowrap; /* Keeps the text on a single line */
    text-overflow: ellipsis; /* Adds an ellipsis if the text is too long */
}

.related-channel-item a {
    text-decoration: none;
    color: inherit; /* Maintains text color consistency */
    display: block; /* Makes the entire item clickable */
}

/* Hover Effects */
.related-channel-item:hover {
    transform: translateY(-3px); /* Slightly lift the item */
    box-shadow: 0 6px 12px rgba(0,0,0,0.15); /* Enhance shadow for visibility */
}
