
.btn-remove {
  background: var(--red);
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.btn-remove:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}





.btn-delete-2 {
  display: flex;
  align-items: center;

  background: var(--red);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0.55rem 1.2rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-delete-2:hover:not(:disabled) {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-delete-2:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

