html, body {
    overflow: hidden;
}
.tablepress tbody {
    display: block;
    overflow: auto;
}
.tablepress thead,
.tablepress tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.tablepress caption {
    display: block;
}
#alert-wrapper {
    position: absolute;
    z-index: 1001;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 1s;
    background-color: black;
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
body.admin-bar #alert-wrapper {
    top: 32px;
}
body.alert-active #alert-wrapper {
    opacity: 1;
}