.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  background: #007bff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.print-pdf-btn::before {
  content: "📄";
  margin-right: 5px;
}

.print-page-btn::before {
  content: "🖨️";
  margin-right: 5px;
}

.dropdown-toggle::after {
  content: "▼";
  font-size: 10px;
  margin-left: 5px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  min-width: 150px;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}

.dropdown-item:hover {
  background: #f8f9fa;
  text-decoration: none;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.select2-results__options {
  margin: 0 !important;
  padding: 0 !important;
}

.select2-results__option{
  margin: 0 !important;
}
