.page-title {
    padding: 34px;
    color: white;
    text-align: center;
    font-weight: bold;    
}

.mypage-video-list {
    height: 100%;
}

.tabs {
    display: flex;
    cursor: pointer;
}
.tab {
    padding: 10px 20px;
    border: 1px solid #ccc;
    width: 50%;
    height: 55px;
    border-radius: 5px 5px 0 0;
    display: flex;
    justify-content: center;
}
.tab.active {
    background-color: #f0f0f0;
    font-weight: bold;
}
.tab.active svg {
    fill: #333;
}
.tab-content {
    display: none;
    padding: 10px;
}
.tab-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, calc((100vw - 50px) / 4));
    gap: 10px;
    overflow-y: scroll;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    grid-auto-rows: calc(((100vw - 50px) / 4) * 9 / 16);
    height: calc(100% - 139px);
}

.tab-content::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}


.tab-content .video-item {
    width: 100%;
}

.tab-content img {
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .tab-content.active {
        grid-template-columns: repeat(auto-fill, calc((100vw - 30px) / 2));
        grid-auto-rows: calc(((100vw - 30px) / 2) * 9 / 16);
    }

}