.video-content-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 10px;
}

.tab-button {
    background: #f6f6f6;
    color: #333;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-right: 10px;
    flex: 1 1 auto;
    min-width: 200px;
    text-align: center;
    white-space: nowrap;
}
body.dark-mode .tab-button{
    background: #333;
    color: #fff;
}
.tab-button.active {
    background: linear-gradient(to right, #8e2de2, #4a00e0);
    color: #fff;
    transform: scale(0.98)!important;
}
body.dark-mode .tab-button.active{
    background: linear-gradient(to right, #8e2de2, #4a00e0);
    color: #fff;
    transform: scale(0.98)!important;
}
.tab-button:hover {
    background: linear-gradient(to right, #7f00ff, #00c6ff)!important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2)!important;
    transform: translateY(-2px)!important;
    color:white!important;
}
.tab-button i{
    color:#fff;
}
body.dark-mode .tab-button i{
    color:#fff;
}
.all-button i {
    color:#7f00ff;
}
.all-button.active i {
    color:#fff;
}
.all-button:hover i {
    color:#fff;
}

@media screen and (max-width: 600px) {
    .video-content-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 90%; /* or 100% for full width */
        min-width: unset;
    }
}