.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }

.btn-xxxl {
    --bs-btn-padding-x: 2rem;
    --bs-btn-font-size: 3rem;
    --bs-btn-border-radius: var(--bs-border-radius-lg);
}

.btn.btn-classic {
    margin-bottom: 1rem;
    cursor: pointer;
    border: 3px solid var(--bs-dark);
    box-shadow: 1px 1px 0px 0px var(--bs-dark), 2px 2px 0px 0px var(--bs-dark), 3px 3px 0px 0px var(--bs-dark), 4px 4px 0px 0px var(--bs-dark), 5px 5px 0px 0px var(--bs-dark);
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.btn.btn-classic:active,
.btn-group.btn-classic:active {
    border: 3px solid var(--bs-dark);
    box-shadow: 0px 0px 0px 0px var(--bs-dark);
    top: 5px;
    left: 5px;
}

.status-window-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1090;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: 0.75;
}

.status-window {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    z-index: 1100;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.status-window-content {
    position: relative;
    display: flex;
    flex-direction: column;
    color: #212529;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.175);
    border-radius: 0.5rem;
    outline: 0;
}

.status-window-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

