	body {
            font-family: 'Roboto', sans-serif;
            padding: 20px;
            background-color: #f9f9f9;
			    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
    overflow-y: scroll; 
        }

body::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}

        h1 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 50px;
			text-align: center;
        }

        .search-bar {
            margin-bottom: 20px;
        }
		.video-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); /* Adjust the column width */
            grid-gap: 20px;
        }

        .video-thumbnail {
            width: 330px;
            height: 240px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            word-wrap: break-word;
            background-color: #fff;
            padding: 10px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            transition: transform 0.3s;
            overflow: hidden;
            position: relative;
        }

        .video-thumbnail:hover {
            transform: scale(1.03);
        }

        .video-thumbnail img {
            width: auto;
            max-height: 210px;
            object-fit: contain;
            align-self: center;
        }

        .video-name {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30px;
            padding: 5px 10px;
            box-sizing: border-box;
            text-align: center;
            font-size: 14px;
            color: #333;
            font-weight: 700;
            background-color: rgba(255, 255, 255, 0.9);
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .input-group {
            width: 300px;
            margin: 0 auto;
        }

        .form-control {
            height: 44px;
            border-radius: 22px;
            font-size: 14px;
        }

        .btn-primary {
            height: 44px;
            border-radius: 22px;
            font-size: 14px;
            padding: 0 20px;
        }