.kebab { 
  position: relative; 
  z-index: 999; /* Add this line */
}
.kebab__btn {
  display:inline-flex; align-items:center; justify-content:center;
  width:28px; height:28px; border:0px solid #cbd5e1; border-radius:6px;
  background:#f0f4ff; cursor:pointer; line-height:1; font-size:18px;
}
.kebab__btn:hover { background:#eef2ff; border-color:#c7d2fe; }

.kebab__menu {
  position: absolute; 
  right: 100%; 
  bottom: 100%; /* Opens upward instead of downward */
  margin-bottom: 4px; /* Small gap */
  z-index: 1000;
  min-width: 160px; 
  padding: 6px; 
  background: #fff;
  border: 1px solid #e5e7eb; 
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.kebab__item {
  display:block; padding:8px 10px; border-radius:6px;
  font-size:14px; color:#1f2937; text-decoration:none;
}
.kebab__item:hover { background:#f3f4f6; }
.kebab__danger { color:#b91c1c; }
.kebab__danger:hover { background:#fef2f2; }

.proposition-node-user-box-footer {
  overflow: visible !important;
}