/* sn_post_menu.css — visibility and styling */
.post-menu{
  position: absolute;
  display: none;               /* top/left macht jetzt JS */
  background: rgba(64, 0, 73, 0.92);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  padding: 6px;
  z-index: 9999;
  min-width: 180px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}
.post-menu.open{ display: block; }
.post-menu a, .post-menu button{
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  color: inherit;
  border: 0;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}
.post-menu a:hover, .post-menu button:hover{ background: rgba(255,255,255,0.08); }
