/* Three-dot menu styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: all 0.2s;
}

.dropdown-toggle:hover {
  background-color: #f3f4f6;
  color: #374151;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 1000;
  min-width: 12rem;
  padding: 0.5rem 0;
  margin: 0.25rem 0 0;
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

.dropdown-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.75rem 1rem;
  clear: both;
  font-weight: 400;
  font-size: 0.95rem;
  color: #374151;
  text-align: left;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  transition: all 0.15s;
}

.dropdown-item:hover {
  background-color: #f3f4f6;
}

.dropdown-item i {
  margin-right: 0.75rem;
  width: 1.25rem;
  font-size: 1.1rem;
  text-align: center;
}

.dropdown-item.text-purple-600 {
  color: #9333ea;
}

.dropdown-item.text-purple-600:hover {
  background-color: #faf5ff;
}

.dropdown-item.text-green-600 {
  color: #16a34a;
}

.dropdown-item.text-green-600:hover {
  background-color: #f0fdf4;
}

.dropdown-item.text-orange-600 {
  color: #ea580c;
}

.dropdown-item.text-orange-600:hover {
  background-color: #fff7ed;
}

.dropdown-item.text-blue-600:hover {
  background-color: #eff6ff;
}

.dropdown-item.text-red-600:hover {
  background-color: #fef2f2;
}
