.toplevel_page_wpultimatepostgrid {
    #update-nag,
    .update-nag,
    .updated,
    .error,
    .is-dismissible {
        display: none;
    }
}

#wpupg-admin-manage-content {
    .wpupg-admin-manage-header {
        display: flex;
        flex-wrap: wrap-reverse;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;

        .wpupg-admin-manage-header-buttons {
            display: flex;
            align-items: center;
            margin-bottom: 10px;

            .button:not(.button-primary) {
                margin-right: 10px;
            }
        }
    }

    .wpupg-admin-manage-page {
        .wpupg-admin-manage-table-container {
            .wpupg-admin-manage-table {
                height: calc(100vh - 50px);

                .wpupg-admin-manage-actions {
                    width: 100%;
                    display: flex;
                    justify-content: space-evenly;
                    align-items: center;
                }

                .wpupg-admin-manage-text-filter {
                    width: 100%;
                }
            }
        }
    }

    .wpupg-admin-manage-requirement {
        margin: 0 auto;
        text-align: center;
        
        div {
            font-weight: bold;
        }
    }
}

@media screen and (min-width: 782px) {
    #wpupg-admin-manage-content {
        .wpupg-admin-manage-header {
            flex-wrap: nowrap;
            .wpupg-admin-manage-header-buttons {
                margin-bottom: 0;
            }
        }        
    }
}

@media screen and (min-height: 768px) {
    #wpupg-admin-manage {
        height: calc(100vh - 65px);
        display: flex;
        flex-direction: column;

        #wpupg-admin-manage-content {
            flex: 1;

            .wpupg-admin-manage-page {
                height: 100%;
                display: flex;
                flex-direction: column;

                .wpupg-admin-manage-table-container {
                    flex: 1;
                    display: flex;
                    flex-direction: column;

                    .wpupg-admin-manage-table-inner {
                        flex: 1;
                        position: relative;

                        .wpupg-admin-manage-table {
                            position: absolute;
                            top: 0;
                            bottom: 0;
                            left: 0;
                            right: 0;
                            height: 100%;
                        }
                    }
                }
            }
        }
    }
}