
/* TicketFlow v31.6 - Admin right-click context menus */
.tf-admin-context-menu{
  position:fixed;
  z-index:999999;
  min-width:245px;
  max-width:320px;
  display:none;
  background:#fff;
  border:1px solid #d5e1ef;
  border-radius:16px;
  box-shadow:0 18px 45px rgba(15,47,77,.20);
  padding:8px;
  color:#0f2f4d;
}
.tf-admin-context-menu.open{display:block}
.tf-admin-context-menu .tf-cm-title{
  padding:10px 12px 8px;
  border-bottom:1px solid #edf2f8;
  margin-bottom:6px;
  color:#6b7d93;
  font-size:12px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.tf-admin-context-menu button{
  width:100%;
  border:0;
  background:transparent;
  color:#0f2f4d;
  text-align:left;
  padding:10px 12px;
  border-radius:11px;
  font-weight:800;
  cursor:pointer;
}
.tf-admin-context-menu button:hover{
  background:#eef5fd;
  color:#1f5f9f;
}
.tf-admin-context-menu button.danger:hover{
  background:#fff0f0;
  color:#b42323;
}
.tf-admin-context-menu .tf-cm-sep{
  height:1px;
  background:#edf2f8;
  margin:6px 0;
}
.tf-admin-context-target{
  outline:2px solid rgba(31,95,159,.18);
  outline-offset:-2px;
  background:#f8fbff!important;
}
@media(max-width:700px){
  .tf-admin-context-menu{
    left:12px!important;
    right:12px!important;
    min-width:0;
    max-width:none;
  }
}
