
/* history */

.table-responsive {
  overflow: visible !important;
  position: relative;
  z-index: 1;
}

.action-popup {
  position: absolute;
  bottom: 20%;
  right: 0;
  min-width: 200px;
  margin-bottom: 0.5rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 1050;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.action-popup.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.action-popup .dropdown-item {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.95rem;
  color: #212529;
  transition: background-color 0.2s ease;
}

.action-popup .dropdown-item:hover {
  background-color: #f8f9fa;
}

.dark-mode .action-popup {
  background-color: #2b2b2b;
  border-color: #444;
}

.dark-mode .action-popup .dropdown-item {
  color: #f8f9fa;
}

.dark-mode .action-popup .dropdown-item:hover {
  background-color: #3a3a3a;
}
.action-popup .dropdown-item:hover{
  color: rgb(100, 229, 119);
}