.confirm-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 5000;
}

.confirm-modal {
    background: white;
    padding: 20px;
    width: 380px;
    margin: 12% auto;
    border-radius: 8px;
    box-shadow: 0 0 10px #333;
}

.confirm-message {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.confirm-payload-container {
    margin-bottom: 20px;
}


.confirm-payload-preview {
    width: 100%;
    height: 150px;
    font-family: monospace;
    font-size: 0.9em;
    white-space: pre;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px;
    background: #f8f8f8;
}

.confirm-buttons {
    text-align: right;
}

.confirm-yes, .confirm-no {
    padding: 6px 12px;
    margin-left: 10px;
}
