.module-content {
  min-height: 400px;
}

/* ── 3-dot row menu ───────────────────────────────────────────── */
.row-menu {
  position: relative;
  display: inline-block;
}

.btn-menu-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--text-secondary, #6b7280);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}

.btn-menu-trigger:hover {
  background: var(--bg-hover, rgba(0,0,0,0.06));
  color: var(--text-primary, #1a1a2e);
}

.row-menu-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  z-index: 200;
  min-width: 130px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  overflow: hidden;
}

.row-menu-dropdown.open {
  display: block;
}

.row-menu-item {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  color: var(--text-primary, #1a1a2e);
  cursor: pointer;
  transition: background 0.12s;
}

.row-menu-item:hover {
  background: var(--bg-hover, #f3f4f6);
}

.row-menu-item--danger {
  color: #dc2626;
}

.row-menu-item--danger:hover {
  background: #fef2f2;
}
