#GalleryGridView {
    .pagination {
        flex-wrap: wrap;
        margin-top: 1rem;
    }

    .images a {
        width: 250px;
        height: 150px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .tab-pane {
        width: 100%;
        max-height: 525px;

        &.show.active {
            display: flex !important;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
            overflow-y: auto;
        }
    }
}