.wpupg-admin-modal-overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(0,0,0,0.7);
    z-index: 99999;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpupg-admin-modal {
    box-sizing: border-box;
    border: 1px solid black;
    background-color: white;
    border-radius: 4px;
    outline: none;
    width: 90%;
    height: auto;
    max-height: 95%;

    display: flex;
    flex-flow: column nowrap;

    * {
        box-sizing: border-box;
    }

    .wpupg-admin-modal-header {
        flex: none;
        padding: 10px;
        background-color: #23282d;

        display: flex;
        justify-content: space-between;
        align-content: center;

        h2 {
            margin: 0;
            color: white;
        }

        .wpupg-admin-modal-close {
            margin-bottom: -2px;
            svg line {
                stroke: white;
            }
        }
    }

    .wpupg-admin-modal-content {
        flex: 1 1 auto;
        overflow: auto;

        padding: 10px;
    }

    .wpupg-admin-modal-footer {
        flex: none;
        padding: 10px;
        background-color: #23282d;

        display: flex;
        justify-content: center;
        align-items: center;

        a {
            text-decoration: none;

            &:hover {
                text-decoration: underline;
            }
        }

        span, a {
            color: white;
        }

        span, a, .button {
            margin: 0 5px;
        }
    }
}

@media screen and (min-width: 782px) {
    .wpupg-admin-modal {
        .wpupg-admin-modal-footer {
            justify-content: flex-end;
    
            .button:last-child {
                margin-right: 0;
            }
        }
    }
}