
		.navbar {
            background-color: #151515;
            padding: 0em 3.25em 0em 3.25em;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
            
        }

        .navbar a {
            font-family: 'Roboto', sans-serif;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 1px;
            text-decoration: none;
            line-height: 5em;
            text-transform: capitalize;
            color: #d1d0cf;
            margin: 0 10px;
        }
        
        .tag{
    display: block;
}

		.sidebar {
            height: 100%;
            width: 0;
            position: fixed;
            z-index: 1;
            top: 0;
            left: 0;
            background-color: #111;
            overflow-x: hidden;
            transition: 0.5s;
            padding-top: 60px;
        }

        .sidebar a {
            padding: 15px;
            text-decoration: none;
            font-size: 20px;
            color: white;
            display: block;
            transition: 0.3s;
        }
		.menu_icon{
			display: none;
		}
		
		.navbar-links {
                display: flex;
            }


        
        
        
        .carousel-cell-img{
    /*width:120px;*/
    /*height: 180px;*/
    aspect-ratio: 1/1.5;
}

.carousel-cell{
    padding: 5px;
    border-radius: 10px;
    width:154px;
}

.divider{
    height: 40px;
}

.single_image_poster{
    width: 100%;
}

.youtube-player{
    width: 600px;
    aspect-ratio: 16/9;
}

.trending-img {
            position: relative;
            display: inline-block; /* Ensure the container only takes the space of the image */
        }

 /* Gradient overlay using ::before pseudo-element */
        .trending-img::After {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient(to bottom, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 64%) 100%);
        }
        
        
        /* Style for the dropdown content */
        .dropdown-content {
            opacity: 0;
            position: absolute;
            background-color: #1a1a1a;
    min-width:300px;
            z-index: 1000000;
            
            transition: all .5s ease;
            
        }

        /* Style for the dropdown links */
        .dropdown-content a {
            color: #c7c7c7;
            padding: 0 10px;
            display: block;
            text-decoration: none;
            text-align: left;
            line-height: 4em;
            font-size: 13px;
    font-weight: 500;
        }

        /* Change color on hover */
        .dropdown-content a:hover {
            background-color: black;
            color: red;
            
        }
        
        .navbar-item:hover .dropdown-content {
            opacity: 1;
            transform: translateY(0);
            cursor: pointer;
        }
        
        
       
        

    a{
        text-decoration: none;
    }
    
    .imdb-logo{
        margin-left: 10px;
    }
    
    /* Apply CSS Grid for responsive layout */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
            grid-gap: 20px;
        }

        /* Style for grid items */
        .grid-item {
            background-color: #181616;
            border-radius: 8px;
        }
        
        .movie-img{
            cursor: pointer;
            transition: transform 0.3s ease;
            
        }
        
        .overlay {
            position: relative;
            display: inline-block; /* Ensure the container only takes the space of the image */
        }
        
        .play-icon{
                display: none;
            }
        .movie-img:hover{
            
            .overlay::After {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient(to bottom, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 64%) 100%);
            }
            
            .play-icon{
                display: block;
                
            }
            
            
            transform: scale(1.1);
            
        }
        
        
        .tab{
            margin: 0 5px;
            border-bottom: 1px solid red;
            border-radius: 5px;
            padding: 5px;
            cursor: pointer;
        }
        
        .tab:hover{
            border-bottom: 2px solid red;
            font-weight: 600;
        }
        
        
        .footer{
            background-color: #141314;
        }
        
        
        /* Define the animation */
        @keyframes slide {
            from {
                transform: translateY(-200px);
            }
            to {
                transform: translateY(0);
            }
        }
        
        /* Define the color change animation */
        @keyframes colorChange {
            from {
                background-color: transparent;
            }
            to {
                background-color: rgb(0 0 0 / 89%);
            }
        }
        
        .youtube-player {
            animation: slide 1s ease-in-out 1; /* Adjust the duration and timing function as needed */
        }
        
        .trailer{
            animation: colorChange 0.5s ease-in-out 1;
        }
        
        
        .active>.page-link{
            background-color: #E50914;
            border-color: #E50914;
        }
        
        .page-link{
            color: #E50914;
        }
        
        .page-link:hover{
            color: #E50914;
        }
        
        .shimmer-container {
              position: relative;
              overflow: hidden;
            }
        .shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, #2c2c2c 50%, transparent 100%);
  animation: shimmerAnimation 1s infinite linear;
}

@keyframes shimmerAnimation {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
        
