#searchForm {
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 10px;
    padding-bottom: 10px;    
}

#searchInput {
    border-radius: 20px 20px 20px 20px;
    height: 40px;
    width: 75%;
    padding: 15px;    
}

#searchForm button {
    background: #0056c1;
    padding: 15px;
    margin-left: 5%;
    border-radius: 5px 5px 5px 5px;
    color: white;
}

.category-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px;
    padding: 10px;
    height: calc(100% - 69px);
    overflow-y: scroll;    
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

.category-listlist::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}

.category-item {
    cursor: pointer;
    background-color: #000;
    position: relative;
}

.category-item img {
    aspect-ratio: 4 / 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-name {
    font-weight: bold;
    color: white;
    color: white;
    position: absolute;
    bottom: 5%;
    left: 6%;
    background: rgba(22, 22, 22, 0.5);
    padding: 6px;    
}

.video-count {
    font-weight: bold;
    color: white;
    color: white;
    position: absolute;
    bottom: 5%;
    right: 6%;    
}