
.bln-modal {
    display: flex;
    position: fixed;
    z-index: 20000; /* Higher than .dialog (10000) */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 24px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    overflow: auto;
    background-color: rgba(0,0,0,0.6); /* Slightly darker overlay */
}

.bln-modal-content {
    background-color: #fefefe;
    margin: 0;
    padding: 20px;
    border: 3px solid var(--bln-brown); /* Stronger border to distinguish from background dialog */
    width: min(450px, 100%); /* Slightly wider */
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4); /* Deeper shadow for elevation */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
}

.bln-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.bln-alert-cancel {
    display: block;
}

.bln-modal-message {
    white-space: pre-wrap;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding-top: 10px;
    padding-right: 8px;
    font-family: inherit;
}
