/* =====================================
   JR — Actions column buttons stack
   v1.0.1: Wrap buttons (no td flex)
   ===================================== */

/* Keep table semantics intact */
.memory-entry td:nth-child(8){
  display: table-cell !important;
  vertical-align: middle;
}

/* Preserve width */
.memory-entry th:nth-child(8),
.memory-entry td:nth-child(8){
  width: 150px !important;
}

/* Flex wrapper (injected or reused) */
.memory-entry td:nth-child(8) .jr-actions-stack{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

/* Prevent weird stretching */
.memory-entry td:nth-child(8) .jr-actions-stack > *{
  max-width: 100%;
}
