/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Oct 15 2025 | 07:11:57 */
/* ===============================
   File: table_context_menu.css
   Version: v1.5.0 ее
   =============================== */

/* Базовое меню */
#table-context-menu.dt-context-menu {
  position: absolute;
  display: none;
  z-index: 10000;
  background: #fff;
  border: 1px solid #ccc;
  font-size: 14px;
  min-width: 200px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

#table-context-menu ul {
  list-style: none;
  margin: 0;
  padding: 4px 0;
}

#table-context-menu li {
  padding: 5px 12px;
  cursor: pointer;
  white-space: nowrap;
}

#table-context-menu li:hover {
  background: #f0f0f0;
}

#table-context-menu .menu-section {
  font-weight: bold;
  color: #444;
  cursor: default;
  padding-top: 6px;
  padding-bottom: 4px;
}

#table-context-menu .separator {
  border-top: 1px solid #ddd;
  margin: 4px 0;
  padding: 0;
  height: 0;
}

/* Подменю */
#table-context-menu .submenu {
  position: relative;
}
#table-context-menu .submenu .submenu-content {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
  z-index: 10001;
}
#table-context-menu .submenu:hover .submenu-content {
  display: block;
}
#table-context-menu .submenu-content li {
  padding: 5px 12px;
}

/* Чекбоксы в колонках */
#table-context-menu .submenu-content label {
  cursor: pointer;
}

/* Опасное действие: Удалить */
#table-context-menu li.danger {
  color: #b91c1c;
  font-weight: 600;
}
#table-context-menu li.danger:hover {
  background: #fee2e2;
  color: #7f1d1d;
}

/* Отключенные пункты меню */
#table-context-menu li.disabled {
  color: #999;
  cursor: not-allowed;
}
#table-context-menu li.disabled:hover {
  background: transparent;
}