.system-stop-status-modal-root.is-hidden {
    display: none;
}

.system-stop-status-modal-root {
    position: fixed;
    inset: 0;
    z-index: 20000;
}

.system-stop-status-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.system-stop-status-dialog {
    position: relative;
    width: min(640px, calc(100vw - 32px));
    margin: 10vh auto 0 auto;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.system-stop-status-header {
    padding: 16px 20px 8px 20px;
    border-bottom: 1px solid #dddddd;
}

.system-stop-status-title {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
}

.system-stop-status-body {
    padding: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.system-stop-status-footer {
    padding: 0 20px 20px 20px;
    text-align: right;
}

.system-stop-status-button {
    min-width: 120px;
    height: 40px;
    padding: 0 16px;
    border: 1px solid #999999;
    background: #f7f7f7;
    border-radius: 4px;
    cursor: pointer;
}

.system-stop-status-button:disabled {
    opacity: 0.7;
    cursor: default;
}