.custom-confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.custom-confirm {
    background: #111111;
    padding: 20px;
    border-radius: 5px;
    min-width: 300px;
    max-width: 500px;
    border: solid 3px #B0FF66;
    color: #ffffff;
}

.custom-confirm-header h3 {
    margin: 0 0 15px 0;
}

.custom-confirm-body {
    margin-bottom: 20px;
}

.custom-confirm-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.custom-confirm-footer button {
    padding: 8px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.custom-confirm-ok {
    background: #A05EE7;
    color: white;
    min-width: 80px;
}

.custom-confirm-cancel {
    background: #A05EE7;
    color: white;
    min-width: 80px;
}